This repository has been archived by the owner on Jun 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
76 lines (76 loc) · 2.26 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "webpack-config",
"description": "Helps to load, extend and merge webpack configs",
"main": "dist/index.js",
"files": [
"dist/",
"src/"
],
"scripts": {
"clean": "rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs",
"eslint": "eslint ./ --cache",
"build": "babel src --out-dir dist --source-maps",
"test": "babel-node jasmine.js",
"cover": "NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json",
"postcover": "nyc report",
"codeclimate": "codeclimate-test-reporter < ./coverage/lcov.info",
"gitdown": "gitdown ./.gitdown/README.md --output-file ./README.md",
"jsdoc": "jsdoc ./src -c ./jsdoc.json",
"gh-pages": "gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"nyc": {
"include": [
"src/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "https://github.com/mdreizin/webpack-config.git"
},
"keywords": [
"webpack",
"webpack-config"
],
"author": "Marat Dreizin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdreizin/webpack-config/issues"
},
"homepage": "https://github.com/mdreizin/webpack-config",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.16.3",
"codeclimate-test-reporter": "^0.4.0",
"eslint": "^3.8.0",
"eslint-config-mdreizin": "^1.1.1",
"eslint-plugin-babel": "^3.2.0",
"gh-pages": "^0.11.0",
"gitdown": "^2.4.8",
"jasmine": "^2.4.1",
"jasmine-spec-reporter": "^2.4.0",
"jsdoc": "^3.4.0",
"nyc": "^8.1.0",
"semantic-release": "^4.3.5",
"travis-after-all": "^1.4.4"
},
"dependencies": {
"babel-runtime": "^6.9.0",
"constitute": "^1.6.2",
"glob": "^7.0.6",
"glob2base": "0.0.12",
"lodash": "^4.13.1",
"recursive-iterator": "^2.0.0"
}
}