-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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": "es-router",
"version": "1.2.0",
"author": {
"name": "Joshua Blaney",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pricelinelabs/es-router"
},
"files": [
"es-router.*.js"
],
"babel": {
"presets": [
"es2015"
]
},
"main": "es-router.js",
"scripts": {
"start": "gulp",
"test": "gulp test",
"build": "gulp build",
"setup": "gulp build",
"lint": "gulp lint",
"commit": "gulp commit",
"prompt": "gulp prompt"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.3.13",
"del": "^2.2.0",
"eslint": "^3.3.1",
"gulp": "^3.8.7",
"gulp-autoprefixer": "^3.1.0",
"gulp-babel": "^6.1.1",
"gulp-eslint": "2.1.0",
"gulp-iife": "^0.2.4",
"gulp-istanbul": "^1.1.1",
"gulp-jasmine": "^2.2.1",
"gulp-load-plugins": "^1.2.0",
"gulp-plumber": "^0.6.6",
"gulp-prompt": "^0.2.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^0.3.1",
"jasmine": "^2.4.1",
"karma": "^0.13.19",
"pre-commit": "^1.1.3",
"priceline-eslint-config": "^1.1.2",
"run-sequence": "^1.0.2"
},
"engines": {
"node": ">=0.12.0"
},
"pre-commit": [
"lint"
]
}