-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.32 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": "service-rule-parser",
"version": "2.2.0",
"description": "",
"homepage": "",
"author": {
"name": "wangshijun",
"email": "wangshijun@renrenche.com",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"parser"
],
"devDependencies": {
"babel-eslint": "^7.1.1",
"chai": "^3.5.0",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-config-xo-space": "^0.14.0",
"eslint-plugin-import": "^2.0.1",
"gulp": "^3.9.0",
"gulp-coveralls": "^0.1.0",
"gulp-eslint": "^2.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^1.0.0",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-mocha": "^2.0.0",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "renrenche/service-rule-parser",
"scripts": {
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"prepublish": "gulp prepublish",
"test": "gulp"
},
"license": "MIT",
"dependencies": {
"debug": "^2.6.1",
"lodash": "^4.17.4",
"sqlite-parser": "^1.0.0"
}
}