forked from lugia-ysstech/mega-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.58 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "lugia-mega",
"version": "1.1.0",
"description": "Standard, efficient, out-of-the-box visual design development tools",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/lugia-ysstech/lugia-mega"
},
"homepage": "https://github.com/lugia-ysstech/lugia-mega",
"bugs": {
"url": "https://github.com/lugia-ysstech/lugia-mega/issues"
},
"author": "#lugia# @hanjingbo",
"license": "Apache-2.0",
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "node scripts/build.js --watch",
"build": "node scripts/build.js",
"changelog": "lerna-changelog",
"lerna": "lerna",
"test": "yarn build && node ./packages/mega-jest/bin/mega-jest.js",
"test:watch": "yarn build && node ./packages/mega-jest/bin/mega-jest.js -w",
"coverage": "yarn build && node ./packages/mega-jest/bin/mega-jest.js --coverage",
"prettier": "prettier --single-quote --write",
"postinstall": "yarn bootstrap",
"stylelint": "stylelint",
"lint": "eslint --format=pretty --ext .js packages scripts",
"lint:fix": "eslint --fix --format=pretty --ext .js packages scripts",
"publish": "node ./scripts/publish.js",
"alpha": "node ./scripts/publish.js -a"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"eslint --fix",
"yarn run prettier",
"eslint",
"git add"
],
"*.{ts,tsx}": [
"yarn run prettier --parser typescript",
"git add"
],
"*.{css,sass,scss,less,sss}": [
"stylelint",
"git add"
]
},
"ignore": [
"*.min.{js,css}"
]
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@lugia/eslint-config-mega": "^1.0.3",
"babel-plugin-add-module-exports": "^1.0.2",
"chokidar": "^2.1.5",
"eslint": "^6.0.1",
"eslint-formatter-pretty": "^2.1.1",
"husky": "^2.1.0",
"lerna": "^3.13.4",
"lerna-changelog": "^0.8.2",
"lint-staged": "^8.1.5",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"shelljs": "^0.8.3",
"slash": "^3.0.0",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"terser": "^3.17.0",
"through2": "^3.0.1",
"typescript": "^3.5.3",
"vinyl-fs": "^3.0.3"
},
"engines": {
"node": ">=10",
"npm": ">=5.2.0"
},
"dependencies": {}
}