-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.59 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
{
"name": "@creditkarma/async-hooks",
"version": "0.0.8",
"description": "An Async Hooks polyfill for Node less than 8, written in TypeScript.",
"main": "lib/main/index.js",
"types": "lib/main/index.d.ts",
"files": [
"lib/main"
],
"keywords": [
"async",
"typescript",
"async hooks",
"async wrap"
],
"scripts": {
"clean": "rimraf ./lib",
"clean-all": "rimraf lib/ 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": "lab --timeout 15000 --verbose -l -S -P spec lib/tests",
"pretest:node_8": "npm run clean && npm run lint && tsc --project ./tsconfig.node8.json",
"test:node_8": "lab --timeout 15000 --verbose -l -S -P spec lib/tests",
"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-hooks"
},
"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",
"rimraf": "^2.5.4",
"tslint": "^5.6.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "2.8.x"
}
}