-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "skeleton-web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "gulp beautify lint && mocha --compilers js:babel/register -r src/spec/setup.js src/spec/domain && karma start",
"start": "gulp connect",
"shrinkwrap": "npm-shrinkwrap --dev"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "5.8.38",
"babel-eslint": "^7.0.0",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.0",
"gulp-connect": "^5.0.0",
"gulp-esformatter": "^6.0.0",
"gulp-sass": "^2.3.2",
"gulp-sass-lint": "^1.2.0",
"gulp-sassbeautify": "^0.1.0",
"gulp-standard": "^8.0.2",
"jspm": "^0.16.46",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jspm": "^2.2.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"mocha": "^3.1.2",
"node-sass": "^3.10.1",
"require-dir": "^0.3.1",
"sass-lint": "^1.9.1"
},
"standard": {
"parser": "babel-eslint"
},
"jspm": {
"directories": {
"baseURL": "src"
},
"dependencies": {
"lodash": "npm:[email protected]"
},
"devDependencies": {
"babel": "npm:[email protected]",
"babel-runtime": "npm:[email protected]",
"core-js": "npm:[email protected]"
}
}
}