-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.22 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
{
"name": "ideal-goggles",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/github:runjak/ideal-goggles",
"author": "Jakob Runge <[email protected]>",
"license": "MIT",
"scripts": {
"start": "ts-node index.ts",
"typecheck": "tsc --noEmit --esModuleInterop --downlevelIteration index.ts",
"typecheck:watch": "yarn typecheck -w",
"build": "yarn run build:dependencies && yarn run build:currencies",
"build:dependencies": "yarn run build:glibc && yarn build:icu && yarn build:glibc-locales",
"build:glibc": "./build-glibc.sh",
"build:glibc-locales": "./build-glibc-locales.sh",
"build:icu": "./build-icu.sh",
"build:currencies": "yarn run build:currencies-icu && yarn run build:currencies-libc",
"build:currencies-icu": "cd currencies; ./build-currencies-icu.sh; cd ..",
"build:currencies-libc": "cd currencies; ./build-currencies-libc.sh; cd .."
},
"dependencies": {
"@types/glob": "^7.1.1",
"fast-levenshtein": "^2.0.6",
"glob": "^8.0.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/fast-levenshtein": "^0.0.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.7",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}