-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 KB
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": "autocomplete",
"version": "1.0.0",
"description": "autocomplete search bar",
"main": "index.js",
"scripts": {
"start": "nodemon src/server.js",
"test": "tape './src/test/**/*.js' | faucet",
"devStart": "nodemon src/server.js",
"coverage": "./node_modules/.bin/istanbul cover src/test/*.js && istanbul report lcov && codecov",
"codecov": "source config.env && ./node_modules/.bin/codecov -t $CODECOV_TOKEN"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-la-node/autocomplete.git"
},
"author": "Ewelina Cleo Tom Peter",
"license": "ISC",
"bugs": {
"url": "https://github.com/a-la-node/autocomplete/issues"
},
"homepage": "https://github.com/a-la-node/autocomplete#readme",
"devDependencies": {
"env2": "^2.1.1",
"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",
"faucet": "0.0.1",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0",
"tape": "^4.6.2"
}
}