-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
153 lines (153 loc) · 4.52 KB
/
Copy pathpackage.json
File metadata and controls
153 lines (153 loc) · 4.52 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "@philholden/bible-react",
"version": "0.0.1-semantic",
"description": "bible with as you type search",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build:webpack": "npm run clean && NODE_ENV=production webpack --config webpack.config.js --env.prod",
"build:babel": "npm run clean && NODE_ENV=lib babel src --out-dir lib",
"build": "npm run clean && npm run build:webpack",
"build:docs": "rimraf docs/dist && rimraf docs/service-worker.js && npm run build && mv dist docs && cp src/service-worker.js docs",
"start": "node devServer.js",
"lint": "eslint src",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"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": "BABEL_ENV=test ava **/*.test.js",
"test:watch": "npm t -- -w --verbose",
"test:cover": "BABEL_ENV=test nyc --reporter=lcov --reporter=text npm t",
"deploy": "echo NOOP",
"semantic-release:npm": "semantic-release pre && npm publish --access public && semantic-release post",
"semantic-release:deploy": "NPM_TOKEN=fake semantic-release pre && npm run deploy && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/philholden/bible-react.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-react/issues"
},
"homepage": "https://github.com/philholden/bible-react",
"devDependencies": {
"aphrodite": "^0.5.0",
"ava": "^0.15.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^1.0.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-webpack-loaders": "^0.7.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"bible-references": "^3.0.0",
"codecov.io": "0.1.6",
"commitizen": "^2.5.0",
"compression": "^1.6.1",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.5",
"enzyme": "^2.4.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.3.0",
"eslint-plugin-import": "^1.10.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"eventsource-polyfill": "^0.9.6",
"expect": "^1.16.0",
"expect-jsx": "^2.5.1",
"express": "^4.13.3",
"fetch-mock": "^5.0.0",
"file-loader": "^0.8.5",
"flow-bin": "^0.27.0",
"ghooks": "^1.3.2",
"googlish": "0.0.8",
"is_js": "^0.7.6",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^9.4.1",
"json-loader": "^0.5.4",
"mobx": "^2.4.2",
"mobx-react": "^3.5.4",
"nodemon": "^1.8.1",
"nyc": "^7.0.0",
"react": "^15.0.2",
"react-addons-shallow-compare": "^15.3.0",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"react-hot-loader": "^3.0.0-beta.2",
"react-redux": "^4.4.5",
"react-virtualized": "^7.19.0",
"redux": "^3.5.2",
"rimraf": "^2.4.3",
"semantic-release": "^4.3.5",
"sinon": "^1.17.4",
"socket.io": "^1.4.0",
"style-loader": "^0.13.1",
"subdivide": "^0.5.0",
"sw-toolbox": "^3.2.1",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.15",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"config": {
"ghookx": {
"pre-commit": "npm run test:cover && npm run check-coverage"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"debug": false
},
"ava": {
"require": [
"babel-register",
"./null-compiler"
],
"babel": {
"presets": [
"react",
"es2015",
"stage-1"
]
}
},
"nyc": {
"exclude": [
"**/__tests__/**/*.js",
"null-compiler.js"
],
"require": [
"babel-register",
"./null-compiler"
],
"sourceMap": false,
"instrument": false
}
}