-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 821 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 821 Bytes
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
{
"name": "@kano/i18n",
"version": "1.0.3",
"main": "index.js",
"repository": "git@github.com:KanoComputing/web-i18n.git",
"author": "Kano Computing <paul@kano.me>",
"license": "MIT",
"bin": {
"i18n-generator": "dist/tools/cli.js"
},
"scripts": {
"tsc": "tsc",
"watch": "tsc --watch",
"build": "tsc",
"build:release": "yarn build:tools && tsc --declaration",
"build:tools": "tsc -p tsconfig.tools.json",
"watch:tools": "yarn build:tools --watch",
"prepublishOnly": "yarn build:release"
},
"devDependencies": {
"@types/node": "^12.0.8",
"typescript": "^3.5.2"
},
"dependencies": {
"acorn": "^6.1.1",
"acorn-dynamic-import": "^4.0.0",
"acorn-walk": "^6.1.1",
"fast-glob": "^2.2.7",
"sywac": "^1.2.1"
}
}