forked from qa-apprenticeships/quiz-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.05 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
{
"name": "quiz-web",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"postinstall": "npm run copy-libs",
"copy-libs": "cpx \"node_modules/{angular/angular.js,angular-route/angular-route.js}\" src/lib -C",
"start": "http-server src -a localhost -p 8000 -c-1 -d false --proxy http://localhost:8000?",
"test": "karma start karma.conf.js",
"build": "rimraf \"dist\" && cd src && cpx \"**/*\" ../dist && npm run substitute",
"test-ci": "karma start karma.conf.js --single-run --browsers ChromeHeadlessNoSandbox",
"substitute": "envsub ./dist/services/config.service.js.template ./dist/services/config.service.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"angular-mocks": "^1.8.0",
"cpx": "^1.5.0",
"envsub": "^4.1.0",
"http-server": "^0.12.3",
"jasmine-core": "^3.6.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"angular": "^1.8.0",
"angular-route": "^1.8.0"
}
}