This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (70 loc) · 2.39 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
{
"name": "health-facility-registry",
"version": "1.0.0",
"description": "App for browsing, searching and editing organizational units",
"main": "index.html",
"scripts": {
"coverage": "babel-node node_modules/.bin/isparta cover --root ./src --report text --report html --report lcov node_modules/mocha/bin/_mocha -- --reporter dot --require config/setup.js --recursive test",
"prebuild": "rm -rf build && mkdir build && d2-manifest package.json manifest.webapp",
"build": "webpack",
"postbuild": "cp index.html build/ && cp icon.png build/ && cp -r css build/ && cp -r images build/ && cp node_modules/babel-polyfill/dist/polyfill.min.js build/ && cp manifest.webapp build/",
"test": "mocha --reporter spec --compilers js:babel-core/register --require config/setup.js --recursive test",
"test-watch": "mocha --reporter spec --compilers js:babel-core/register --require config/setup.js --recursive test --watch",
"lint": "eslint --fix src && ./node_modules/eslint/bin/eslint.js --env node,mocha --global expect,sinon,spy,stub --rule 'no-unused-expressions: 0' test && scss-lint",
"validate": "npm ls",
"start": "webpack-dev-server"
},
"keywords": [
"DHIS2",
"App"
],
"author": "Joshua & Erik",
"license": "BSD-3-Clause",
"dependencies": {
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"d2-manifest": "^1.0.0",
"enzyme": "^2.1.0",
"eslint": "^2.4.0",
"eslint-config-dhis2": "^2.0.2",
"eslint-plugin-react": "^4.1.0",
"isparta": "^4.0.0",
"jsdom": "^9.0.0",
"mocha": "^2.4.5",
"flux": "^3.1.0",
"geojson": "^0.4.0",
"json-loader": "^0.5.4",
"history": "^3.2.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-google-maps": "^4.11.0",
"react-router": "^3.0.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"pre-commit": [
"test",
"lint",
"validate"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ewinge/Health-facility-registry.git"
},
"homepage": "https://github.com/ewinge/Health-facility-registry#readme",
"manifest.webapp": {
"icons": {
"48": "icon.png"
}
}
}