-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.61 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
{
"name": "cloud-parameter",
"private": false,
"version": "0.8.165",
"main": "index.js",
"description": "Base Parameter Type-Interface via Node.js",
"types": "index.d.ts",
"license": "BSD-3-Clause",
"author": "Jacob B. Sanders",
"scripts": {
"test": "tsc && node --experimental-vm-modules $(command -v jest) --config jest.config.js --injectGlobals --detectOpenHandles",
"update": "tsc && node --experimental-vm-modules $(command -v jest) -u --config jest.config.js --injectGlobals --detectOpenHandles",
"start": "tsc && node --experimental-vm-modules $(command -v jest) --config jest.config.js --injectGlobals --detectOpenHandles --watch",
"build": "tsc --build $(dirname $(npm root))/tsconfig.json --watch",
"compile": "tsc && node unit-testing",
"demonstrate": "node --es-module-specifier-resolution node .",
"upload": "npm publish --access public",
"reinstall": "npm update && npm install --global --force",
"prepublishOnly": "npm install --silent && tsc && npm run test"
},
"devDependencies": {
"cloud-parameter": ".",
"@iac-factory/eslint-settings": "^1.7.36",
"@jest/globals": "^29.4.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"jest": "^29.4.3",
"typescript": "^5.0.0-beta"
},
"repository": {
"type": "git",
"directory": ".",
"url": "https://github.com/iac-factory/cloud-parameter.git"
},
"publishConfig": {
"access": "public",
"tag": "latest",
"registry": "https://registry.npmjs.org"
}
}