-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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
{
"name": "ah-context-store",
"version": "0.1.0",
"description": "A context storage for async resources, based on Node.js Async Hooks API",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"demo:async-await": "nodemon demos/demo-async-await.js --watch src --watch demos --exec babel-node",
"demo:promises": "nodemon demos/demo-promises.js --watch src --watch demos --exec babel-node",
"demo:server": "nodemon demos/demo-server.js --watch src --watch demos --exec babel-node",
"stress:server": "artillery run demos/server/stress.yml",
"build:demos": "rm -rf build && babel demos -d build --copy-files",
"prerelease": "npm run test",
"release": "npm version -m \"New version: %s\"",
"postrelease": "npm run push && npm publish",
"push": "git push origin master && git push origin --tags"
},
"files": [
"src",
"index.js"
],
"engines": {
"node": ">=10"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"@babel/plugin-syntax-object-rest-spread"
]
},
"keywords": [
"async_hooks",
"async resources",
"async",
"context"
],
"author": "mawrkus <web@sparring-partner.be>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"artillery": "^1.6.0-28",
"axios": "^0.19.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"hapi": "^17.8.1",
"nodemon": "^1.18.7"
}
}