-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "@bell-crow/pipe-core",
"version": "1.4.2",
"description": "process data like a pipeline",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rm -rf dist && rm -rf lib && rollup -c",
"test": "jest",
"coverage": "jest --coverage",
"cover": "jest --coverage && coveralls < coverage/lcov.info"
},
"keywords": [
"process",
"pipeline",
"crow",
"bell"
],
"author": "lengfangbing",
"license": "ISC",
"repository": {
"url": "https://github.com/lengfangbing/pipe-core"
},
"bugs": {
"url": "https://github.com/lengfangbing/pipe-core/issues"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.0",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^28.1.2",
"rollup": "^2.66.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^28.0.5",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}