-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1019 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
36
37
38
39
40
41
42
43
{
"name": "simplest-i18n",
"description": "The Simplest Universal i18n Solution",
"author": "Ken Berkeley <[email protected]>",
"version": "1.0.0",
"main": "i18n.min.js",
"scripts": {
"lint": "standard i18n.js",
"prebuild": "npm run lint",
"build": "uglifyjs i18n.js -c -m -o i18n.min.js",
"pretest": "npm run lint",
"test": "ava test.js",
"vue": "poi examples/vue/app.js",
"react": "poi --jsx react examples/react/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kenberkeley/simplest-i18n.git"
},
"keywords": [
"i18n",
"internationalization",
"isomorphic",
"locale",
"localization",
"globalization",
"simple",
"simplest",
"translate",
"translation",
"universal"
],
"devDependencies": {
"ava": "^0.24.0",
"js-cookie": "^2.2.0",
"poi": "^9.6.12",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"standard": "^10.0.3",
"uglify-js": "^3.3.5"
},
"license": "MIT"
}