-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 1.24 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
{
"name": "@rockerjs/tls",
"version": "1.0.0",
"description": "A threadlocal storage for node.js",
"author": {
"name": "yangli",
"email": "[email protected]",
"url": "https://github.com/royalrover"
},
"scripts": {
"build": "npm run clean && (tsc || true)",
"clean": "rimraf ./dist",
"cover": "npm run build && deco dist/test && cd dist && istanbul cover _mocha -x src/errors/**/*.js -- --timeout 10000 --exit --reporter spec --recursive",
"dev": "npm run clean && tsc -w",
"lint": "tslint ./src/**/*.ts ./src/*.ts",
"prepublish": "npm run build",
"start": "tsc -w",
"test": "npm run build && deco dist/test"
},
"devDependencies": {
"@rockerjs/tsunit": "^1.0.0",
"@types/node": "^7.10.5",
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"koa": "^2.7.0",
"rimraf": "^2.6.2",
"tslint": "^5.14.0",
"typescript": "^2.7.2"
},
"keywords": [
"tls",
"TLS",
"threadlocal",
"ThreadLocal",
"async context bound",
"ACB",
"acb"
],
"license": "MIT",
"directories": {
"doc": "doc"
},
"main": "./dist/index.js"
}