-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "babel-plugin-quick-quote",
"version": "1.0.7",
"description": "easy to load and import echarts module on demand",
"author": "SCWR(dl_run@qq.com)",
"main": "lib/index.js",
"scripts": {
"start": "yarn build && yarn test -u",
"build": "babel src --out-dir lib --presets=@babel/preset-env",
"test": "jest",
"generate": "node bin/index.js",
"release": "np --no-cleanup",
"prepublishOnly": "yarn build && yarn run generate",
"postinstall": "node bin/index.js --init"
},
"bin": {
"babel-plugin-quick-quote": "bin/index.js"
},
"license": "MIT",
"keywords": [
"echarts",
"module",
"dynamic"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SCWR/babel-plugin-quick-quote.git"
},
"bugs": {
"url": "https://github.com/SCWR/babel-plugin-quick-quote/issues"
},
"homepage": "https://github.com/SCWR/babel-plugin-quick-quote#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"echarts": "^4.1.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0"
},
"peerDependencies": {
"echarts": ">=3 <=4"
},
"engines": {
"node": ">= 6.0.0"
},
"files": [
"quick-quote.config.js",
"bin",
"lib"
]
}