-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 845 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
33
34
35
{
"name": "travelm-agency",
"version": "3.5.0",
"description": "Generate type-safe accessors and decoders for your i18n files",
"main": "./lib/main.js",
"bin": "index.js",
"scripts": {
"build": "tsc && cross-env NODE_ENV=production node build.js",
"build:dev": "node build.js",
"test": "node generate_test_cases.js && elm-test-rs"
},
"keywords": [
"Elm",
"I18n",
"JSON",
"Codegen"
],
"author": "Andreas Molitor",
"license": "ISC",
"types": "./lib/main.d.ts",
"dependencies": {
"elm-format": "0.8.7",
"intl-proxy": "^1.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^18.8.5",
"cross-env": "^7.0.3",
"elm": "^0.19.1-5",
"elm-test-rs": "^3.0.0-5",
"node-elm-compiler": "^5.0.6",
"typescript": "^5.5.4",
"uglify-js": "^3.15.3"
}
}