-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 949 Bytes
/
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
{
"name": "arrow",
"version": "2.0.0",
"description": "Description that needs to be changed some time soon",
"license": "AGPL-3.0",
"repository": "https://github.com/amos-ws16/amos-ws16-arrowjs",
"main": "lib/score-manager",
"devDependencies": {
"buster": "^0.7.18",
"coveralls": "^2.11.14",
"cross-env": "^3.1.3",
"eslint": "^3.9.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^0.4.5",
"nyc": "^8.4.0",
"supertest": "^2.0.1"
},
"scripts": {
"eslintfix": "eslint --fix **/*.js",
"test": "eslint . && buster-test",
"cover": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text buster-test",
"coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"verror": "^1.9.0",
"string-similarity": "^1.1.0",
"keyword-extractor": "0.0.13"
}
}