-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 958 Bytes
/
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
{
"name": "concurrency-promise",
"version": "1.0.1",
"description": "Split promises in chunks and execute by Promise.all",
"main": "dist/index.js",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8",
"browsers": [
">0.25%",
"not ie 11",
"not op_mini all"
]
}
}
]
]
},
"standard": {
"globals": [
"beforeAll",
"afterAll",
"it",
"describe",
"expect"
]
},
"scripts": {
"build": "babel src -s -D -d dist",
"example": "babel-node src/index.example.js",
"lint": "standard 'src/**/*.js'",
"test": "npm run lint && jest"
},
"keywords": ["promise", "concurrency"],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.1.0",
"standard": "^11.0.1"
}
}