-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "uaa-singular",
"version": "1.46.0",
"repository": {
"type": "git",
"url": "https://github.com/cloudfoundry/uaa-singular"
},
"files": [
"singular"
],
"main": "singular/singular.umd.js",
"dependencies": {
"chromedriver": "^131.0.0",
"idempotent-babel-polyfill": "~7.4.4",
"jwt-simple": "^0.5.6"
},
"resolutions": {
"eslint-scope": "3.7.1"
},
"devDependencies": {
"file-loader": "^6.2.0",
"http-server": "^14.1.1",
"jasmine": "^5.4.0",
"jasmine-core": "^5.4.0",
"nightwatch": "^3.9.0",
"selenium-server-standalone-jar": "4.26.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "rm -rf singular && webpack",
"get-uaa": "rm -rf test/tmp/uaa && git clone -b develop https://github.com/cloudfoundry/uaa.git test/tmp/uaa",
"start-uaa": "sh test/startUAA.sh",
"stop-uaa": "cd test/tmp/uaa && ./gradlew cargoStopLocal",
"start-singular-app": "sh test/startHttpServer.sh",
"stop-singular-app": "kill $(cat test/tmp/httpServer.pid.tmp) && rm test/tmp/httpServer.pid.tmp",
"test": "npm run build && npm run unit-test && npm run integration-test",
"unit-test": "node_modules/jasmine/bin/jasmine.js --config=jasmine.json",
"integration-test": "cd test && ../node_modules/nightwatch/bin/nightwatch"
}
}