-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "v-localize",
"version": "1.2.2",
"description": "Simple localization plugin for the amazing Vue.js.",
"main": "dist/v-localize.js",
"directories": {
"example": "example"
},
"scripts": {
"bundle": "node_modules/.bin/webpack --config webpack.config.js",
"lint": "node_modules/.bin/coffeelint -f coffee-lint.json src/**.coffee && node_modules/.bin/eslint __test__/**.js",
"test": "node_modules/.bin/jest --coverage",
"build": "npm run lint && npm run bundle && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neetjn/v-localize.git"
},
"keywords": [
"vue",
"vue.js",
"localize",
"javascript",
"i18n",
"internationalization",
"coffeescript"
],
"author": "John Nolette",
"license": "MIT",
"bugs": {
"url": "https://github.com/neetjn/v-localize/issues"
},
"homepage": "https://neetjn.github.io/v-localize/",
"dependencies": {},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.29",
"coffee-loader": "^0.9.0",
"coffeelint": "^2.1.0",
"coffeescript": "^2.4.1",
"eslint": "^5.16.0",
"hoek": "^5.0.3",
"jest": "^24.7.1",
"jest-dom": "^3.1.3",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"verbose": true
}
}