-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "article-api",
"version": "0.1.0",
"description": "api template for articles",
"scripts": {
"dev": "nodemon -e js --ignore test/*.js src/index.js",
"test:coverage": "NODE_ENV=test tap src/tests/*.js --coverage-report=lcov",
"test": "NODE_ENV=test tap src/tests/*.js",
"start": "node src/index.js",
"precommit": "semistandard --verbose | snazzy"
},
"author": "[email protected]",
"contributors": [
{
"name": "Ali Attayee",
"email": "[email protected]"
}
],
"license": "UNLICENSED",
"semistandard": {
"ignore": [
"/coverage"
]
},
"dependencies": {
"async": "2.1.5",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"node-emoji": "^1.5.1",
"require-glob": "3.2.0",
"restify": "4.3.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"codeclimate-test-reporter": "0.4.1",
"nodemon": "1.11.0",
"semistandard": "^10.0.0",
"snazzy": "^6.0.0",
"supertest": "3.0.0",
"tap": "10.2.0",
"tap-colorize": "^1.2.0",
"testdouble": "^1.11.2"
},
"engines": {
"node": "7.6.0"
}
}