-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.24 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "bible-references",
"description": "normalise bible references",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"clean": "rimraf lib",
"validate-webpack": "webpack-validator webpack2.config.js --env.prod",
"build:webpack": "webpack --env.prod --config webpack2.config.js -p",
"build:babel": "NODE_ENV=lib BABEL_DISABLE_CACHE=1 babel src --out-dir lib",
"build": "npm run clean && npm run build:babel",
"start": "node devServer.js",
"lint": "eslint src",
"commit": "git-cz",
"open-coverage": "open ./coverage/lcov-report/index.html",
"check-coverage": "nyc check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"report-coverage": "nyc report --reporter=text-lcov | codecov",
"test": "NODE_ENV=test ava src/**/*.test.js --require babel-register --require ./src/__tests__/null-compiler",
"test:watch": "nodemon -w src --exec 'npm t -- --verbose'",
"test:cover": "nyc --reporter=lcov --reporter=text npm t",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/philholden/bible-references.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"babel",
"react-transform"
],
"author": "Phil Holden (http://github.com/philholden)",
"license": "MIT",
"bugs": {
"url": "https://github.com/philholden/bible-references/issues"
},
"homepage": "https://github.com/philholden/bible-references",
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-webpack-loaders": "^0.4.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.7.2",
"codecov.io": "0.1.6",
"commitizen": "^2.5.0",
"compression": "^1.6.1",
"cross-env": "^1.0.7",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-flowtype": "^2.3.0",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.0.1",
"eventsource-polyfill": "^0.9.6",
"expect": "^1.16.0",
"expect-jsx": "^2.5.1",
"express": "^4.13.3",
"file-loader": "^0.8.5",
"ghooks": "0.3.2",
"is_js": "^0.7.6",
"nodemon": "^1.8.1",
"nyc": "^5.3.0",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"react-hot-loader": "^3.0.0-beta.2",
"rimraf": "^2.4.3",
"semantic-release": "^4.3.5",
"socket.io": "^1.4.0",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.15",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0",
"webpack-validator": "^2.2.2",
"xregexp": "^3.1.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"debug": false
}
}