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
70 lines (70 loc) · 1.83 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
{
"name": "webpack-config",
"description": "Helps to load, extend and merge webpack configs",
"main": "dist/index.js",
"files": [
"dist/",
"src/"
],
"scripts": {
"clean": "rm -rf dist coverage docs",
"lint": "eslint --ext js,md ./ --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",
"jsdoc": "jsdoc ./src -c ./jsdoc.json"
},
"nyc": {
"include": [
"src/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "https://github.com/Fitbit/webpack-config.git"
},
"keywords": [
"webpack",
"webpack-config"
],
"author": "Marat Dreizin <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Fitbit/webpack-config/issues"
},
"homepage": "https://github.com/Fitbit/webpack-config",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"jasmine": "^3.1.0",
"jasmine-spec-reporter": "^4.2.1",
"jsdoc": "^3.5.5",
"nyc": "^11.7.1",
"semantic-release": "^15.1.7",
"travis-deploy-once": "^4.4.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"constitute": "^1.6.2",
"lodash": "^4.17.10",
"recursive-iterator": "^3.3.0",
"yargs-parser": "^10.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}