forked from AlanPieczonka/CodeFights-Unit-Tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "js-start-here",
"version": "0.0.1",
"description": "",
"main": "dist/js-start-here.js",
"scripts": {
"test": "gulp",
"lint": "gulp lint",
"test-browser": "gulp test-browser",
"watch": "gulp watch",
"build": "gulp build",
"coverage": "gulp coverage"
},
"repository": {
"type": "git",
"url": "https://github.com//js-start-here.git"
},
"keywords": [],
"author": "Michał Czyż <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com//js-start-here/issues"
},
"homepage": "https://github.com//js-start-here",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "6.2.5",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"del": "^3.0.0",
"glob": "^7.1.2",
"gulp": "3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-filter": "^5.0.0",
"gulp-istanbul": "^1.1.2",
"gulp-livereload": "3.8.1",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^4.3.1",
"gulp-plumber": "1.1.0",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"isparta": "4.0.0",
"json-loader": "0.5.4",
"mocha": "^3.4.2",
"sinon": "^2.3.8",
"sinon-chai": "^2.12.0",
"webpack": "^3.3.0",
"webpack-stream": "3.2.0"
},
"babelBoilerplateOptions": {
"entryFileName": "js-start-here.js",
"mainVarName": "jsStartHere"
}
}