-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 1.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mip-cli",
"version": "1.1.18",
"description": "Command line interface for MIP",
"preferGlobal": true,
"bin": {
"mip": "bin/mip"
},
"repository": {
"type": "git",
"url": "https://github.com/mipengine/mip-cli"
},
"keywords": [
"mip",
"cli",
"mip-cli"
],
"contributors": [
{
"name": "mkwiser",
"email": "[email protected]"
},
{
"name": "erik",
"email": "[email protected]"
},
{
"name": "Jackson",
"email": "[email protected]"
},
{
"name": "xuexb",
"email": "[email protected]"
},
{
"name": "JennyL",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"lint": "fecs . --rule --reporter=baidu",
"test": "env NODE_ENV=test mocha --timeout 5000 --recursive test/spec/**/*.spec.js",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^1.1.1",
"child_process": "^1.0.2",
"chokidar": "^1.6.1",
"commander": "^2.9.0",
"deepmerge": "^2.1.0",
"etpl": "^3.2.0",
"express": "^4.14.0",
"fecs": "~1.4.1",
"livereload": "^0.5.0",
"mip-cli-boilerplate": "^1.0.8",
"mip-extension-optimizer": "^1.1.5",
"mip-extension-validator": "^1.0.9",
"mip-processor-md5": "^1.0.0",
"mip-validator": "^1.2.13",
"request": "^2.75.0",
"rimraf": "^2.6.1"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"bin",
"boilerplate",
"lib"
],
"devDependencies": {
"del": "^2.2.2",
"mocha": "^3.2.0",
"supertest": "^2.0.1"
}
}