-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "conctx",
"version": "0.0.5",
"description": "continuation async context for node.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "webpack --hide-modules --config webpack.prod.js",
"dev": "webpack -w --hide-modules --config webpack.dev.js",
"test": "webpack --hide-modules --config webpack.prod.js && jest"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/danwime/conctx.git"
},
"keywords": [
"context",
"threadlocal",
"node.js"
],
"author": "李雨田 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danwime/conctx/issues"
},
"homepage": "https://github.com/danwime/conctx#readme",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.15",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"husky": "^1.2.1",
"jest": "^23.6.0",
"source-map-support": "^0.5.9",
"ts-loader": "^5.3.1",
"typescript": "^3.2.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5",
"webpack-node-externals": "^1.7.2"
}
}