This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
46 lines (46 loc) · 1.61 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
{
"name": "promise-performance-tests",
"version": "0.0.1",
"description": "Promise performance tests",
"main": "run.js",
"scripts": {
"build:doxbee-async-babel": "babel -o build/doxbee-async-babel.js --presets env lib/doxbee-async.js",
"build:fibonacci-async-babel": "babel -o build/fibonacci-async-babel.js --plugins transform-async-generator-functions --presets env lib/fibonacci-async.js",
"build:measure-async-babel": "babel -o build/measure-async-babel.js --presets env lib/measure-async.js",
"build:parallel-async-babel": "babel -o build/parallel-async-babel.js --presets env lib/parallel-async.js",
"build": "npm run build:doxbee-async-babel && npm run build:fibonacci-async-babel && npm run build:measure-async-babel && npm run build:parallel-async-babel && webpack",
"postinstall": "npm run build",
"precommit": "lint-staged",
"start": "node run.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"lib/*.js": [
"prettier --write",
"git add"
],
"webpack.config.js": [
"prettier --write",
"git add"
]
},
"author": {
"name": "Benedikt Meurer",
"email": "[email protected]",
"url": "http://benediktmeurer.de"
},
"license": "Apache License 2.0",
"dependencies": {
"bluebird": "^3.5.1",
"regenerator-runtime": "^0.11.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-preset-env": "^1.6.1",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
}
}