-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "word-quiz-generator",
"description": "Easy-to-use Word Quiz Generator",
"version": "4.0.0",
"author": "nodaguti",
"bin": "lib/cli.js",
"bugs": "https://github.com/nodaguti/word-quiz-generator/issues",
"dependencies": {
"colors": "^1.1.2",
"csv": "^1.1.0",
"debug": "^2.2.0",
"fs-extra-promise": "^0.4.0",
"lodash": "^4.13.1",
"minimist": "^1.2.0",
"pad": "^1.0.0",
"progress": "^2.0.0",
"shell-quote": "^1.6.1",
"source-map-support": "^0.4.0",
"xregexp": "^3.1.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-plugin-transform-async-to-generator": "^6.7.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-power-assert": "^1.0.0",
"coveralls": "^2.11.9",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"isparta": "^4.0.0",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.0",
"power-assert": "^1.4.2",
"rimraf": "^2.5.2",
"stanford-corenlp": "nodaguti/node-stanford-corenlp"
},
"files": [
"lib",
"vendor/install.sh",
"vendor/.mecabrc"
],
"homepage": "https://github.com/nodaguti/word-quiz-generator",
"keywords": [
"education",
"exam",
"generator",
"quiz",
"test",
"vocabulary"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "nodaguti/word-quiz-generator",
"scripts": {
"build": "npm-run-all clean babel",
"babel": "babel src --out-dir lib --source-maps",
"clean": "rimraf lib",
"test": "npm-run-all lint test:cover",
"test:mocha": "mocha --compilers js:babel-core/register test/unit",
"test:cover": "$(npm bin)/babel-node $(npm bin)/isparta cover --report text --report lcov _mocha -- test/unit",
"lint": "eslint test src",
"prepublish": "npm-run-all build"
}
}