-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.72 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@creditkarma/async-scope",
"version": "0.0.16",
"description": "A thread local approximation built on async hooks, written in TypeScript",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"files": [
"dist/main"
],
"keywords": [
"typescript",
"async hooks",
"async wrap",
"thread storage",
"k/v store",
"node"
],
"scripts": {
"clean": "rimraf ./dist",
"clean-all": "rimraf dist/ node_modules/ package-lock.json",
"lint": "tslint --fix './src/**/*.ts'",
"prebuild": "npm run clean",
"build": "npm run lint && tsc",
"watch": "tsc --watch",
"pretest": "npm run build",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "lab --timeout 15000 --verbose -l -S -P spec dist/tests/unit",
"test:integration": "lab --timeout 15000 --verbose -l -S -P spec dist/tests/integration",
"release:patch": "npm version patch && npm run release:publish",
"release:minor": "npm version minor && npm run release:publish",
"release:major": "npm version major && npm run release:publish",
"release:publish": "git push --follow-tags"
},
"author": "Credit Karma",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/creditkarma/async-scope"
},
"dependencies": {
"@creditkarma/async-hooks": "0.0.8"
},
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/code": "^4.0.3",
"@types/lab": "^11.1.0",
"@types/node": "^8.0.31",
"@types/rimraf": "0.0.28",
"bluebird": "^3.5.1",
"code": "^4.1.0",
"lab": "^14.2.0",
"lerna": "^2.0.0",
"rimraf": "^2.5.4",
"tslint": "^5.6.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.8.2"
}
}