-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "i18n4v",
"version": "0.2.2",
"description": "Portable i18n library for virtual dom",
"types": "./i18n4v.d.ts",
"main": "./index.js",
"bin": {
"i18n4v": "./bin/i18n4v.js"
},
"scripts": {
"test": "mocha --require intelli-espower-loader",
"posttest": "eslint bin index.js vue_plugin/index.js src test",
"prebuild": "uglifyjs --support-ie8 --compress --mangle --source-map index.js.map -o index.min.js -- index.js",
"build": "browserify --debug -t espowerify test/test_runtime.js -o docsrc/_static/browser_test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/shibukawa/i18n4v"
},
"keywords": [
"internatinalization",
"localization",
"translation"
],
"author": "Yoshiki Shibukawa",
"license": "MIT",
"devDependencies": {
"browserify": "^13.1.0",
"chromedriver": "^2.25.1",
"esdoc": "^0.4.8",
"eslint": "^3.8.1",
"espowerify": "^1.0.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^3.1.2",
"node-localstorage": "^1.3.0",
"power-assert": "^1.4.1",
"selenium-webdriver": "^3.0.0-beta-3",
"uglify-js": "^2.7.4"
},
"dependencies": {
"commander": "^2.9.0",
"es-pattern-match": "^0.7.4",
"jsdom": "^9.8.0",
"os-locale": "^1.4.0"
},
"files": [
"index.js",
"index.min.js",
"index.js.map",
"i18n4v.d.ts",
"bin/i18n4v.js",
"src/acorn-syntax-error.js",
"src/cli.js",
"src/data.js",
"languages/en.json",
"languages/ja.json",
"README.md",
"LICENSE.md"
]
}