-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "autocompleter",
"version": "1.0.0",
"description": "Simple full-stack text autocompletion implementation",
"main": "server.js",
"scripts": {
"test": "tape 'bTest/**/*.js' | tap-spec",
"start": "node server.js",
"coverage": "istanbul cover ./node_modules/tape/bin/tape ./bTest/*.js",
"posttest": "istanbul report lcov && codecov",
"devStart": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-u/autocompleter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-u/autocompleter/issues"
},
"homepage": "https://github.com/fac-u/autocompleter#readme",
"dependencies": {},
"devDependencies": {
"codecov": "^1.0.1",
"eslint": "^3.9.1",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.2"
}
}