-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
84 lines (84 loc) · 2.7 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
{
"name": "mapping-app",
"version": "27.0.43",
"description": "GIS Web App for DHIS 2",
"main": "build/index.js",
"scripts": {
"validate": "npm ls --depth 0",
"start": "webpack-dev-server",
"build": "rm -rf build && webpack --config webpack.config.prod.js && cp -r dhis2 build && cp -r extjs build && mkdir -p build/src/custom && cp -r src/custom build/src && cp index.html build && cp -r css build/css && cp src/app.js build/src/app.js && cp manifest.prod.webapp build/manifest.webapp && cp -r i18n build && cp -r images build",
"lint": "./node_modules/eslint/bin/eslint.js src",
"test": "./node_modules/karma-cli/bin/karma start test/karma.config.js --single-run",
"test-watch": "./node_modules/karma-cli/bin/karma start test/karma.config.js",
"test-cov": "npm test",
"posttest-cov": "open ./coverage/phantomjs/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhis2/gis-app.git"
},
"keywords": [
"DHIS2",
"HISP",
"GIS"
],
"author": "Bjørn Sandvik",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dhis2/gis-app/issues"
},
"homepage": "https://github.com/dhis2/gis-app#readme",
"dependencies": {
"d2-utilizr": "^0.2.13",
"d3-time-format": "^2.1.1",
"dhis2-gis-api": "^29.0.5",
"loglevel": "^1.6.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-dhis2": "^2.1.0",
"eslint-plugin-react": "^7.0.0",
"exports-loader": "^0.6.4",
"file-loader": "^0.11.1",
"image-webpack-loader": "^3.3.1",
"imports-loader": "^0.7.1",
"isparta-loader": "^2.0.0",
"karma": "^1.7.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.3.0",
"node-sass": "^4.13.1",
"phantomjs-polyfill": "^0.0.2",
"phantomjs-prebuilt": "^2.1.8",
"precommit-hook": "3.0.0",
"sass-loader": "^6.0.5",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0",
"style-loader": "^0.17.0",
"susy": "^2.2.12",
"url-loader": "^0.5.8",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"pre-commit": [
"test"
]
}