-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "@kogai/typed_i18n",
"version": "0.6.0",
"description": "Type safe i18n with Flow and TypeScript",
"bin": "index.js",
"scripts": {
"clean": "bsb -clean-world && rm -f lib/bundle.bs.js",
"build": "make src/typed_i18n.bs.js",
"build:production": "make lib/bundle.bs.js",
"watch": "bsb -make-world -w",
"test": "yarn test:unit && cd example && yarn test",
"test:unit": "make __tests__/typed_i18n_test.bs.js && yarn jest",
"test:unit:watch": "yarn jest --watch",
"start": "yarn build && node src/typed_i18n.bs.js",
"start:build": "yarn start -- -i fixture/locale.json -o fixture -p ja -l flow -l typescript",
"prepublish": "yarn clean && yarn build:production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kogai/typed_i18n.git"
},
"keywords": [
"BuckleScript",
"flow",
"typescript",
"ocaml",
"reasonml",
"i18n"
],
"author": "Shinichi Kogai",
"license": "MIT",
"bugs": {
"url": "https://github.com/kogai/typed_i18n/issues"
},
"homepage": "https://github.com/kogai/typed_i18n#readme",
"devDependencies": {
"@glennsl/bs-jest": "0.4.6",
"@glennsl/bs-json": "5.0.4",
"bs-cmdliner": "0.1.0",
"bs-easy-format": "0.1.0",
"bs-platform": "7.3.1",
"webpack": "4.47.0",
"webpack-cli": "3.3.12"
}
}