-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.61 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
{
"name": "participation-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"precommit": "npm run lint && nyc --reporter=lcov npm test",
"test": "ava --verbose --require babel-register --require './test/helpers/setup-browser-env.js'",
"dev": "webpack-dev-server --progress",
"build": "webpack --config ./webpack.production.config.js --progress",
"clean": "rimraf './public/*.+(js|css|html)'",
"lint": "semistandard './app/**/*.js'",
"coverage": "nyc check-coverage --lines 100, --functions 100, --branches 100"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anna-freud-participation/participation-app.git"
},
"author": "Matt Glover (https://github.com/matthewglover)",
"license": "MIT",
"bugs": {
"url": "https://github.com/anna-freud-participation/participation-app/issues"
},
"homepage": "https://github.com/anna-freud-participation/participation-app#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"coveralls": "^2.11.12",
"css-loader": "^0.24.0",
"extract-text-webpack-plugin": "^1.0.1",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "^2.22.0",
"husky": "^0.11.6",
"jsdom": "^9.5.0",
"json-loader": "^0.5.4",
"node-sass": "^3.8.0",
"nyc": "^8.1.0",
"sass-loader": "^4.0.0",
"semistandard": "^9.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
},
"dependencies": {
"@matthewglover/hapi-wrapper": "^0.2.0"
},
"engines": {
"node": "6.2.2"
}
}