-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "async-hooks-map",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/xujif/async-hooks-storage",
"author": "i@xujif.com",
"description": "A Thread-local storage (TLS) like Map implementation, base on node async hooks, support nodejs & typescript",
"license": "MIT",
"keywords": [
"typescript",
"Thread-local storage (TLS) ",
"thread local",
"async hooks",
"async hooks map"
],
"scripts": {
"compile": "tsc",
"tslint": "tslint --project .",
"prepack": "npm run tslint && npm run compile && npm run test",
"test": "mocha --require espower-typescript/guess src/tests/**/*.ts"
},
"engines": {
"node": ">=8.6.0"
},
"engineStrict": true,
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": ">=8.6.0",
"espower-typescript": "^8.1.3",
"mocha": "^5.0.1",
"power-assert": "^1.4.4",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"tslint-config-standard": "^7.0.0",
"typescript": "*"
}
}