-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "mz-modules",
"version": "2.1.0",
"description": "modernize node.js modules to current ECMAScript standards",
"dependencies": {
"glob": "^7.1.2",
"ko-sleep": "^1.0.3",
"mkdirp": "^0.5.1",
"pump": "^3.0.0",
"rimraf": "^2.6.1"
},
"devDependencies": {
"egg-bin": "^4.1.0",
"eslint": "^4.5.0",
"eslint-config-egg": "^5.0.0",
"mm": "^2.1.0",
"mz": "^2.6.0",
"stat-mode": "^0.2.2",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint .",
"dev": "egg-bin dev",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov"
},
"files": [
"lib",
"index.js",
"glob.js",
"mkdirp.js",
"rimraf.js",
"setImmediate.js",
"nextTick.js",
"sleep.js",
"pump.js"
],
"repository": {
"type": "git",
"url": "[email protected]:node-modules/mz-modules.git"
},
"author": "popomore <[email protected]>",
"license": "MIT"
}