-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.52 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
{
"name": "gulp-jscc",
"version": "1.2.0",
"description": "A gulp plugin for jscc",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=6.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"scripts": {
"report-coverage": "codecov",
"lint:eclint": "eclint check $(git ls-files | tee /tmp/git-files)",
"lint:eslint": "eslint $(grep \"\\.js$\" /tmp/git-files | grep -v \"^test/fixtures\")",
"pretest": "npm run lint:eclint && npm run lint:eslint && rm /tmp/git-files",
"test": "npm run unit",
"unit": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gucong3000/gulp-jscc.git"
},
"keywords": [
"gulp",
"jscc",
"conditional",
"comments",
"compilation",
"parser"
],
"author": "gucong3000",
"license": "MIT",
"bugs": {
"url": "https://github.com/gucong3000/gulp-jscc/issues"
},
"homepage": "https://github.com/gucong3000/gulp-jscc#readme",
"dependencies": {
"bufferstreams": "^2.0.0",
"jscc": "^1.1.0",
"plugin-error": "^1.0.1",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"codecov": "^3.1.0",
"eclint": "^2.8.1",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"exec-extra": "^2.6.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"vinyl-fs": "^3.0.0"
}
}