-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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": "@megalo/env-plugin",
"version": "1.0.1",
"description": "为megalo-cli创建的工程提供模式",
"main": "index.js",
"scripts": {
"precommit": "npm run lint",
"lint": "standard \"src/**/*.js\" --fix",
"build": "babel --copy-files --out-dir dist src",
"test": "node ./test --mode customer --platform swan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/megalojs/megalojs-env-plugin.git"
},
"keywords": [
"env",
"environment",
"process.env",
"webpack",
"plugin"
],
"author": "running@vip.163.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/megalojs/megalojs-env-plugin/issues"
},
"homepage": "https://github.com/megalojs/megalojs-env-plugin#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"standard": "^12.0.1"
},
"standard": {
"parser": "babel-eslint"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-assign",
"transform-class-properties"
]
},
"dependencies": {
"minimist": "^1.2.0",
"webpack": "^4.27.1"
}
}