-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "@galtproject/vue-locale",
"version": "0.1.10",
"main": "src/index.js",
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/aegir build && mv dist/index.min.js dist/index.js && rm dist/index.min.js.LICENSE.txt",
"release": "npm run build && cp package.json dist/ && cp README.md dist/ && cp yarn.lock dist/ && npm publish ./dist"
},
"keywords": [
"vue",
"i18n",
"locale",
"localization",
"javascript"
],
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"author": "Galt Project Core Team",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.2",
"@types/node": "^8.10.17",
"aegir": "^25.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"mocha": "^5.2.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"browserify": {
"transform": [
"babelify"
]
}
}