-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
77 lines (77 loc) · 2.33 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
{
"name": "openmrs-owa-conceptdictionary",
"version": "1.0.1",
"description": "Lets you search/view/edit concepts, mappings and related metadata",
"repository": {
"type": "git",
"url": "https://github.com/rkorytkowski/openmrs-owa-conceptdictionary"
},
"dependencies": {
"modernizr": "3.5.0",
"angular": "^1.5.5",
"angular-route": "1.5.x",
"openmrs-contrib-uicommons": "^0.4.3"
},
"devDependencies": {
"angular-mocks": "^1.5.5",
"angular-translate": "^2.11.0",
"archiver": "^1.0.0",
"autoprefixer": "^6.0.3",
"babel-core": "^6.2.1",
"babel-loader": "6.x",
"babel-preset-es2015": "^6.1.18",
"browser-sync": "^2.11.1",
"browser-sync-webpack-plugin": "^1.0.1",
"codacy-coverage": "^1.1.3",
"copy-webpack-plugin": "^4.3.0",
"css-loader": "^0.28.7",
"del": "^2.2.0",
"eslint": "^2.4.0",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.0.0",
"extract-text-webpack-plugin": "1.x",
"file-loader": "0.10.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.7.1",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.5",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.7",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"main-bower-files": "^2.11.1",
"on-build-webpack": "^0.1.0",
"orchestrator": "^0.3.7",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^1.12.13",
"webpack-md5-hash": "0.0.5",
"wiredep": "^4.0.0",
"yargs": "^4.3.1"
},
"keywords": [
"OpenMRS",
"Open",
"Web",
"App"
],
"author": "rkorytkowski",
"license": "MPL-2.0",
"scripts": {
"clean": "rimraf dist && rimraf build* && rimraf coverage*",
"build": "npm run clean && webpack --progress --colors --mode=production --target=web",
"build:prod": "npm run build && npm run test",
"build:travis": "npm run build:prod",
"build:deploy": "webpack --progress --colors --mode=dev --target=web",
"watch": "webpack --progress --colors --watch --mode=dev --target=web",
"test": "karma start --singleRun=true",
"test:debug": "karma start",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./"
}
}