-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@flybywiresim/rnp",
"main": "src/index.js",
"description": "RNP is a language which compiles to [RPN][], a scripting language used by MSFS.",
"version": "2.1.0",
"scripts": {
"lint": "eslint --cache src test .eslintrc.js",
"test": "tap --100",
"coverage": "tap --coverage-report=html",
"build:site": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flybywiresim/rnp.git"
},
"author": "snek",
"license": "MIT",
"bugs": {
"url": "https://github.com/flybywiresim/rnp/issues"
},
"homepage": "https://github.com/flybywiresim/rnp#readme",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.12.1",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-virtual": "^2.0.3",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"rollup": "^2.35.1",
"tap": "^15.0.6"
}
}