-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.72 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.72 KB
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": "purescript-kubernetes",
"devDependencies": {
"bower": "1.8.2",
"pulp": "12.3.0",
"purescript": "0.12.0"
},
"scripts": {
"clean": "rm -rf output .pulp-cache",
"clean:all": "npm run clean && rm -rf node_modules bower_components",
"bower": "bower",
"build": "npm run clean && pulp build --main Kubernetes.Client --build-path output --to output/app.js",
"build:watch": "npm run clean && pulp --watch build --main Kubernetes.Client --build-path output --to output/app.js",
"build:generation": "npm run clean && pulp build --src-path src/Kubernetes/Generation --main Kubernetes.Generation.Main --build-path output --to output/generate.js",
"build:generation:watch": "npm run clean && pulp --watch build --src-path src/Kubernetes/Generation --main Kubernetes.Generation.Main --build-path output --to output/generate.js",
"generate": "rm -rf src/Kubernetes/Api && node output/generate.js",
"generate:watch": "npm run clean && pulp --watch --then 'npm run generate' build --src-path src/Kubernetes/Generation --main Kubernetes.Generation.Main --build-path output --to output/generate.js",
"pulp": "pulp",
"repl": "pulp repl",
"test": "npm run test:unit",
"test:integration": "pulp test --main Kubernetes.Test.Integration.Main",
"test:integration:local": "./scripts/start_minikube.sh && CA_CERT=~/.minikube/ca.crt CLIENT_CERT=~/.minikube/client.crt CLIENT_KEY=~/.minikube/client.key K8S_HOST=localhost K8S_PORT=8443 K8S_PROTOCOL=https npm run test:integration",
"test:unit": "pulp test --main Kubernetes.Test.Unit.Main",
"test:unit:watch": "pulp --watch test --main Kubernetes.Test.Unit.Main"
},
"dependencies": {
"mute-stream": "0.0.7",
"read": "1.0.7"
}
}