This repository has been archived by the owner on May 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "mip-cache",
"version": "1.0.2",
"description": "使用nodejs推送删除MIP数据到百度站长平台",
"main": "lib/index.js",
"bin": {
"mip-cache": "./bin/mip-cache"
},
"scripts": {
"check": "fecs check src/ test/ --reporter=baidu --rule",
"compile": "babel src/ -d lib/",
"watch": "npm run compile -- --watch",
"prepublish": "npm run compile",
"test:watch": "npm run test -- --watch",
"test:cov": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-register -t 10000 --recursive -R spec test/",
"test": "mocha --compilers js:babel-register --reporter spec --timeout 10000 --recursive test/",
"release": "bash ./release.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/xuexb/mip-cache.git"
},
"contributors": [
"xuexb <fe.xiaowu@gmail.com>"
],
"author": "xuexb <fe.xiaowu@gmail.com>",
"keywords": [
"mip",
"mip-cache"
],
"bugs": {
"url": "https://github.com/xuexb/mip-cache/issues"
},
"license": "MIT",
"homepage": "https://github.com/xuexb/mip-cache",
"devDependencies": {
"babel-cli": "6.x.x",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-0": "6.x.x",
"babel-preset-stage-3": "6.x.x",
"babel-register": "6.x.x",
"chai": "^3.5.0",
"fecs": "^1.2.2",
"istanbul": ">=1.0.0-alpha.2",
"mocha": "^3.2.0",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0"
},
"dependencies": {
"babel-runtime": "6.x.x",
"cli-color": "^1.2.0",
"commander": "^2.9.0",
"ora": "^1.2.0",
"request": "^2.81.0"
},
"engines": {
"node": ">= 4.0.0"
}
}