-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.67 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
{
"name": "async-parallel-foreach",
"version": "1.0.1",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"repository": "[email protected]:Donaldcwl/async-parallel-foreach.git",
"author": "Donald <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"watch": "rollup -cw rollup.config.ts",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"test:watch:coverage": "npm run test:watch -- --coverage",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts",
"postbuild": "npm run docs",
"coverage-badges": "make-coverage-badge",
"prepublish": "npm run test:coverage && npm run coverage-badges && npm run build",
"docs": "typedoc --out docs --target es6 --theme minimal --mode file src"
},
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@types/async": "^2.4.0",
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"jest": "^23.6.0",
"jest-config": "^23.6.0",
"lodash.camelcase": "^4.3.0",
"make-coverage-badge": "^1.0.1",
"rollup": "^1.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.19.2",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.2.4"
},
"peerDependencies": {
"async": "^2.6.1"
}
}