-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
54
55
{
"name": "@lvchengbin/sequence",
"version": "1.1.12",
"description": "A light library for executing multiple steps in sequence.",
"keywords": [
"sequence",
"order",
"step",
"promise"
],
"main": "dist/sequence.cjs.js",
"jsnext:main": "src/sequence.js",
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"test": "karma start",
"test-es5": "karma start --es5=true",
"lint": "eslint ./ --cache --ignore-path .eslintignore",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"repository": {
"type": "git",
"url": "[email protected]:LvChengbin/sequence.git"
},
"author": "LvChengbin",
"license": "MIT",
"devDependencies": {
"@lvchengbin/sleep": "0.0.2",
"buble": "^0.19.8",
"eslint": "^6.3.0",
"jasmine-core": "^3.4.0",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.2",
"karma-yolk-preprocessor": "0.0.7",
"koa-static": "^5.0.0",
"optimist": "^0.6.1",
"pre-commit": "^1.2.2",
"puppeteer": "^1.19.0",
"rollup": "^1.20.3",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"@lvchengbin/event-emitter": "^0.1.5",
"@lvchengbin/is": "0.0.27",
"@lvchengbin/kit": "0.0.2",
"@lvchengbin/promise": "^1.1.7"
}
}