-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "dweeve",
"version": "0.0.1",
"description": "",
"main": "./lib/exe/dweeve.js",
"scripts": {
"build": "yarn nearley && rm -rf ./lib && node ./node_modules/@babel/cli/bin/babel.js ./src -d lib --extensions \".js\" && mkdir ./lib/parser && cp ./src/parser/dweeve-grammar.js ./lib/parser/ ",
"test": "yarn nearley && ./node_modules/jest/bin/jest.js",
"nearley": "./node_modules/nearley/bin/nearleyc.js ./src/parser/dweeve-grammar.ne -o ./src/parser/dweeve-grammar.js"
},
"eslintConfig": {},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.11.1",
"date-fns": "^2.9.0",
"dictionaryjs": "^1.0.9",
"format-number-with-string": "0.0.2",
"moo": "^0.5.1",
"nearley": "^2.19.0",
"pluralize": "^8.0.0",
"strip-comments": "https://github.com/ICornwell/strip-comments",
"xmldom": "^0.6.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@testing-library/jest-dom": "^4.2.4",
"babel-eslint": "10.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "8.1.0",
"babel-plugin-named-asset-import": "^0.3.6",
"chai": "^4.2.0",
"chai-json": "^1.0.0",
"eslint": "^6.6.0",
"eslint-loader": "3.0.3",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.1",
"jest": "24.9.0",
"jest-cli": "^26.3.0",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.2",
"pretty-js": "^0.2.1",
"semver": "6.3.0",
"url-loader": "2.3.0"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"ignore": [
"**/dweeve-grammar.js"
]
},
"jest": {
"verbose": true,
"transformIgnorePatterns": [
"/node_modules/",
"dweeve-grammar.js"
]
}
}