-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 951 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
{
"name": "thunder-dao",
"version": "1.0.0",
"description": "dao mysql",
"main": "bin/index.js",
"scripts": {
"compile": "npm run lint && tsc -p .",
"init": "npm run install:modules && npm run install:typings",
"install:modules": "npm install",
"install:typings": "typings install",
"lint": "tslint -c ./tslint.json src/**/*.ts",
"build": "npm run compile",
"debug": "node bin/index.js",
"debug:local": "npm run compile && node debug bin/index.js",
"debug:remote": "npm run compile && node --inspect --debug-brk bin/index.js",
"debug:devtool": "npm run compile && devtool bin/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"dao",
"mysql"
],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"tslint": "^3.11.0",
"typescript": "^1.8.10",
"typings": "^1.3.0"
}
}