-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.13 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
{
"name": "gulpur",
"version": "1.0.0",
"description": "gulp with Traceur gulpfiles",
"bin": "index.js",
"files": [
"index.js",
"LICENSE"
],
"scripts": {
"test": "node index.js test"
},
"repository": "shinnn/gulpur",
"author": {
"name": "Shinnosuke Watanabe",
"email": "snnskwtnb@gmail.com",
"url": "https://github.com/shinnn"
},
"license": "MIT",
"keywords": [
"gulpfriendly",
"gulp",
"ecmascript",
"es6",
"ES.next",
"harmony",
"compiler",
"transpiler"
],
"engines": {
"node": ">=0.10"
},
"preferGlobal": true,
"dependencies": {
"traceur-runner": "^1.0.2"
},
"peerDependencies": {
"traceur": ">= 0.0.79 < 1"
},
"devDependencies": {
"graceful-fs": "^3.0.5",
"gulp": "^3.8.10",
"gulp-concat": "^2.2.0",
"gulp-jscs": "^1.3.1",
"gulp-jshint": "^1.5.3",
"gulp-load-plugins": "^0.8.0",
"jshint-stylish": "^1.0.0",
"rimraf-promise": "^1.0.0",
"tape": "^3.0.3",
"traceur": "^0.0.79"
},
"jscsConfig": {
"preset": "google",
"esnext": true,
"maximumLineLength": 98,
"validateLineBreaks": "LF"
}
}