-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 2.03 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
{
"name": "noframenet",
"version": "4.2.0",
"description": "A set of scripts to import FrameNet XML data to a MongoDB database",
"keywords": [
"FrameNet",
"MongoDB"
],
"author": "Alexandre Kabbach",
"license": "MIT",
"scripts": {
"lint": "./node_modules/.bin/eslint . --ext .js",
"test": "NODE_ENV=testing ./node_modules/mocha/bin/mocha './tests/**/*.@(js)' --reporter spec",
"posttest": "npm run lint",
"clean": "NODE_ENV=production node ./scripts/clean.js",
"cleandev": "NODE_ENV=development node ./scripts/clean.js",
"check": "NODE_ENV=production node ./scripts/check.js",
"checkdev": "NODE_ENV=development node ./scripts/check.js",
"import": "npm run clean && NODE_ENV=production node --max-old-space-size=8192 ./scripts/extract.js",
"importdev": "npm run cleandev && NODE_ENV=development node --max-old-space-size=8192 --trace-warnings ./scripts/extract.js",
"postimport": "npm run fix",
"postimportdev": "npm run fixdev",
"fix": "NODE_ENV=production node ./scripts/fix.js",
"fixdev": "NODE_ENV=development node ./scripts/fix.js",
"postfix": "npm run check",
"postfixdev": "npm run checkdev",
"try": "npm run cleandev && NODE_ENV=development node --max-old-space-size=8192 ./scripts/extract.js",
"debug": "npm run cleandev && NODE_ENV=development node ./scripts/debug.js"
},
"homepage": "https://github.com/akb89/noframenet#readme",
"repository": {
"type": "git",
"url": "git+https://[email protected]/akb89/noframenet.git"
},
"bugs": {
"url": "https://github.com/akb89/noframenet/issues"
},
"dependencies": {
"ascii-progress": "^1.0.5",
"bluebird": "^3.5.0",
"jsonix": "^2.4.1",
"mongoose": "^5.2.9",
"noframenet-core": "^5.4.3",
"winston": "^3.0.0"
},
"devDependencies": {
"chai": "^4.0.2",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"mocha": "^5.0.0",
"rewire": "^4.0.1"
}
}