-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 949 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
{
"name": "xyz-core",
"version": "0.4.1",
"description": "Microservice platform wrapper for node js ",
"main": "index.js",
"scripts": {
"test": "./node_modules/typescript/bin/tsc && ./node_modules/.bin/mocha --reporter spec",
"test-travis": "rm -Rf node_modules && npm install && tsc && ./node_modules/.bin/mocha --reporter spec",
"build": "./node_modules/typescript/bin/tsc",
"dev": "./node_modules/typescript/bin/tsc --watch",
"tsdoc": "./bin/build_doc.sh",
"lintit": "tslint src/* --type-check --project ./tsconfig.json"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/node": "^7.0.12",
"chai": "^3.5.0",
"docdash": "^0.4.0",
"jsdoc": "^3.4.0",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"tslint": "^5.1.0",
"typedoc": "^0.5.10",
"typescript": "^2.3.2",
"xyz-cli": "^0.3.2"
},
"dependencies": {
"winston": "^2.2.0"
}
}