-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.99 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
{
"name": "craig",
"version": "1.16.5",
"description": "gui for generating ibm cloud infrastructure resources",
"main": "index.js",
"scripts": {
"test": "mocha unit-tests/ --recursive --reporter-option maxDiffSize=0",
"coverage": "npx nyc --check-coverage=true npm run test",
"build": "npm i && cd client && npm i && npm run build && cp -r build ../",
"client": "npm run build && open http://localhost:3000",
"start": "NODE_ENV=production && npm run build && node server.js",
"md": "node lib/docs-as-markdown",
"changelog": "node lib/changelog-as-markdown",
"deploy": "./deploy.sh",
"compatibility-tests": "./compatibility.sh",
"tf": "node lib/cli-json-to-tf.js",
"setup": "npm i mocha -g && npm i && cd client && npm i",
"front-end-test": "cd client && npm test",
"i-all": "npm i && cd client && npm i",
"pretty": "npx prettier --write .",
"dev-start": "cd client && npm start",
"pre-commit-build": "cd client && npm run build",
"update-templates": "node lib/template-updater.js",
"before-commit": "npm run changelog && npm run update-templates && npm run pretty"
},
"authors": [
"Jennifer Valle",
"Isaac Eichelberger",
"Christopher Springstead",
"Evelyn Pirnia",
"Alexandra Isaly",
"Jiawe He",
"Ayman Naji",
"Wesley Ip",
"Lucas Franke",
"Connor Terech"
],
"license": "ISC",
"dependencies": {
"axios": "^1.7.4",
"blob-stream": "^0.1.3",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.20.0",
"js-yaml": "^4.1.0",
"json-to-tf": "^0.2.1",
"lazy-z": "1.12.1",
"regex-but-with-words": "^1.5.1",
"swagger-ui-express": "^5.0.0",
"tar-stream": "^3.1.6"
},
"devDependencies": {
"chai": "^4.3.6",
"husky": "^8.0.3",
"mocha": "^10.1.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"sinon": "^15.0.1"
},
"nyc": {
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
}
}