-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "async-adapter",
"version": "0.0.0",
"description": "Adapt callback pattern functions into async-await ready functions",
"author": "Geoff Davis <[email protected]>",
"license": "MIT",
"main": "dist/asyncAdapter.cjs.js",
"jsnext:main": "dist/asyncAdapter.esm.js",
"module": "dist/asyncAdapter.esm.js",
"private": false,
"scripts": {
"r": "./node_modules/.bin/rollup -c",
"demo": "cd demo && ../node_modules/.bin/httpster -p 1200; cd -;",
"rollup": "yarn r",
"start": "yarn rollup --watch",
"test": "jest"
},
"devDependencies": {
"@types/es6-promise": "^0.0.33",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"httpster": "^1.0.3",
"jest": "^21.2.1",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-typescript2": "^0.8.4",
"ts-jest": "^21.2.4",
"typescript": "^2.6.2"
},
"babel": {
"plugins": [
"transform-flow-strip-types"
],
"presets": [
[
"env",
{
"target": {
"browsers": [
"last 2 versions"
]
},
"modules": false
}
]
]
}
}