forked from sagemathinc/gcloud-pricing-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "@cocalc/gcloud-pricing-calculator",
"version": "1.7.0",
"description": "Google Cloud Pricing Calculator",
"main": "./dist/lib/index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepublishOnly": "pnpm audit && rm -rf dist && pnpm exec tsc && echo \"require('./dist/lib').updateData()\" | node",
"build": "pnpm exec tsc",
"clean": "rm -rf dist node_modules"
},
"files": [
"dist/**",
"README.md",
"package.json"
],
"engines": {
"node": ">=0.18.0"
},
"author": {
"name": "William Stein (SageMath, Inc.)",
"email": "[email protected]",
"url": "https://wstein.org"
},
"dependencies": {
"awaiting": "^3.0.0",
"cheerio": "1.0.0-rc.12",
"csv-parse": "^5.5.2",
"debug": "^4.3.4"
},
"keywords": [
"google",
"cloud"
],
"license": "AGPL noncommercial -- SEE LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/sagemathinc/gcloud-pricing-calculator.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^20.5.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
}
}