-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 855 Bytes
/
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": "terraform",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"postinstall": "node --no-warnings ./scripts/postinstall.js",
"tf": "node --no-warnings ./scripts/tf.js",
"import": "node --no-warnings ./scripts/tf.js import",
"state": "node --no-warnings ./scripts/tf.js state",
"plan": "node --no-warnings ./scripts/tf.js plan",
"apply": "node --no-warnings ./scripts/tf.js apply"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/prettier": "^2.4.3"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "all"
}
}