forked from dwimberger/dmtx-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dmtx-api",
"description": "Datamatrix API Service",
"version": "1.0.0",
"author": "[email protected]",
"contributors": [
{
"name": "Dieter Wimberger",
"email": "[email protected]"
}
],
"scripts": {
"start": "node --optimize_for_size --max_old_space_size=96 --gc_interval=100 app/app.js",
"lint": "./node_modules/.bin/jshint app --reporter=./node_modules/jshint-stylish",
"checkStyle": "./node_modules/.bin/jscs app",
"pretest": "npm run-script lint && npm run-script checkStyle && npm run-script docs",
"test": "./node_modules/.bin/istanbul cover --include-all-sources ./node_modules/.bin/jasmine",
"docs": "./node_modules/.bin/jsdoc -c ./jsdoc-conf.json",
"predeploy": "echo I am about to deploy",
"deploy": "echo I am deploying",
"postdeploy": "echo I have deployed"
},
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"keywords": [
"datamatrix",
"api",
"microservice"
],
"dependencies": {
"debug": "^2.2.0",
"moment": "^2.11.0",
"restify": "^4.3.0"
},
"devDependencies": {
"ink-docstrap": "^1.1.0",
"istanbul": "^0.4.1",
"jasmine": "^2.4.1",
"jasmine-reporters": "^2.0.8",
"jscs2": "^1.13.2",
"jsdoc": "^3.4.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.1.0"
},
"jscsConfig": {
"preset": "google",
"jsDoc": {
"checkAnnotations": "jsdoc3",
"checkTypes": "strictNativeCase",
"extra": {
"module": false
}
}
},
"engines": {
"node": "0.12.x"
},
"license": "MIT"
}