-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 898 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
32
33
34
35
36
37
{
"name": "week4-dfjl-colours",
"version": "1.0.0",
"description": "css colour autocompleter",
"main": "public/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "tape tests/test.js | tap-spec",
"coverage": "nyc tape tests/test.js | tap-spec",
"start": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plasticneuron/week4-DFJL-colours.git"
},
"keywords": [
"autocomplete",
"server",
"backend"
],
"author": "FAC18-DFJL",
"license": "ISC",
"bugs": {
"url": "https://github.com/plasticneuron/week4-DFJL-colours/issues"
},
"homepage": "https://github.com/plasticneuron/week4-DFJL-colours#readme",
"devDependencies": {
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {}
}