-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.57 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"version": "0.3.1",
"license": "MIT",
"main": "dist/mpilot.js",
"module": "lib-esm/index.js",
"files": [
"dist",
"lib",
"lib-esm",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rm -Rf dist lib lib-esm && tsc && tsc -m es6 --outDir lib-esm && cp src/parser/mpilot.* lib/parser && cp src/parser/mpilot.* lib-esm/parser && webpack --config webpack.config.babel.js",
"test": "jest -c jest.config.js --verbose --expand",
"build-parser": "jison jison/mpilot.jison -o src/parser/mpilot.js"
},
"name": "mpilot",
"author": "Nikolas Stevenson-Molnar",
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.13.14",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jison-gho": "^0.6.1-216",
"prettier": "^2.2.1",
"ts-loader": "^8.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.2.4",
"typescript-declaration-webpack-plugin": "^0.2.2",
"webpack": "^4.0.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"parse-entities": "^3.1.0"
}
}