-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "capnpid",
"version": "0.1.4",
"description": "Generate capnp schema ID easily.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/xmonader/capnpid"
},
"author": "Ahmed T. Youssef",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"start": "npm run build && npm run watch",
"build": "npm run build-ts && npm run tslint",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"jest": {
"globals": {
"__TS_CONFIG__": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
},
"dependencies": {
"big-integer": "*"
},
"devDependencies": {
"@types/node": "^8.0.20",
"nodemon": "^1.11.0",
"tslint": "^5.0.0",
"typescript": "^2.4.0"
}
}