forked from wechat-miniprogram/miniprogram-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.63 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
{
"name": "miniprogram-i18n",
"version": "1.0.0",
"description": "The internationalizational (i18n) library for wechat miniprogram",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=dev && npm run test:compile && npm run test:gulp:wxml && npm run test:gulp:locales && npm run test:core",
"test:compile": "cross-env NODE_ENV=dev && jest --config=scripts/jest.compile.config.js --verbose",
"test:core": "cross-env NODE_ENV=dev && jest --config=scripts/jest.core.config.js --verbose",
"test:gulp:wxml": "cross-env NODE_ENV=dev && jest --config=scripts/jest.gulp.wxml.config.js --verbose",
"test:gulp:locales": "cross-env NODE_ENV=dev && jest --config=scripts/jest.gulp.locales.config.js --verbose",
"build": "cross-env NODE_ENV=prod && lerna run build ",
"postinstall": "cross-env NODE_ENV=prod && lerna bootstrap",
"lint": "tslint -c tslint.json 'packages/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ele828/miniprogram-i18n.git"
},
"author": "wechat-miniprogram",
"license": "MIT",
"bugs": {
"url": "https://github.com/ele828/miniprogram-i18n/issues"
},
"homepage": "https://github.com/ele828/miniprogram-i18n#readme",
"devDependencies": {
"@types/gulp": "^4.0.5",
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"lerna": "^3.6.0",
"rollup": "^0.68.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-uglify": "^6.0.2",
"tslib": "^1.9.3",
"typescript": "^3.2.2"
},
"dependencies": {
"cross-env": "^5.2.0",
"ts-jest": "^23.10.5"
}
}