-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
59
60
61
62
63
64
65
66
{
"author": "bleshik",
"bugs": {
"url": "https://github.com/bleshik/ctx4node/issues"
},
"description": "A micro library helping to keep the context in nested promises and callbacks",
"devDependencies": {
"@types/jest": "21.1.0",
"@types/node": "6.0.73",
"cross-env": "4.0.0",
"jest": "23.4.2",
"rimraf": "2.6.1",
"ts-jest": "23.1.3",
"ts-loader": "2.0.3",
"tslint": "5.0.0",
"typescript": "3.0.1",
"uglify-es": "3.1.10",
"webpack": "2.3.2"
},
"homepage": "https://github.com/bleshik/ctx4node#readme",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testEnvironment": "node",
"testMatch": [
"**/*.spec.(ts)"
],
"transform": {
".(ts)": "ts-jest"
}
},
"keywords": [
"nodejs",
"node",
"context",
"domain",
"promise",
"callback",
"threadlocal"
],
"license": "Unlicense",
"main": "build/index.js",
"types": "build/index.d.ts",
"name": "ctx4node",
"repository": {
"type": "git",
"url": "git+https://github.com/bleshik/ctx4node.git"
},
"scripts": {
"build": "npm run clean && tsc --declaration && npm run uglify",
"clean": "rimraf dist",
"deploy": "npm version patch && npm run build && npm publish",
"lint": "tslint ./src/**/*.ts ./test/**/*.ts",
"postversion": "git push origin master",
"pretest": "cross-env NODE_ENV=test npm build && npm run lint",
"start": "tsc -w",
"test": "jest",
"tsc": "tsc --declaration",
"uglify": "./node_modules/uglify-es/bin/uglifyjs build/index.js --keep-fnames --ecma 6 -o build/index.js"
},
"version": "1.1.3"
}