-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
76 lines (76 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vue-gettext",
"version": "2.1.12",
"description": "Translate your Vue.js applications with gettext",
"typings": "types/index.d.ts",
"main": "dist/vue-gettext.js",
"author": "Marc Hertzog",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Polyconseil/vue-gettext"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "rollup -c build/rollup.config.js && uglifyjs dist/vue-gettext.js -cm --comments -o dist/vue-gettext.min.js",
"dev": "node build/server-dev.js",
"dev:dist": "rollup -w -c build/rollup.config.js",
"lint": "eslint src test dev build",
"test": "npm run lint && karma start build/karma.conf.js --single-run"
},
"engines": {
"npm": ">= 3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"buble": "^0.14.2",
"chai": "^3.5.0",
"css-loader": "^2.1.1",
"easygettext": "^2.13.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^1.6.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.16.3",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.24.1",
"json-loader": "^0.5.4",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^1.3.4",
"karma-webpack": "^2.0.13",
"mocha": "^6.1.4",
"moment": "^2.22.1",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^1.1.0",
"puppeteer": "^1.17.0",
"rollup": "^1.16.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^10.0.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"style-loader": "^0.13.1",
"uglify-js": "^2.7.4",
"vue": "^2.5.16",
"vue-loader": "^10.0.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.22.1"
},
"files": [
"dist",
"src",
"types/*.d.ts"
]
}