forked from qa-apprenticeships/quiz-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 924 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 924 Bytes
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
{
"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",
"test-ci": "karma start karma.conf.js --single-run --browsers ChromeHeadlessNoSandbox"
},
"author": "",
"license": "ISC",
"devDependencies": {
"angular-mocks": "^1.8.0",
"cpx": "^1.5.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"
}
}