-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
55 lines (55 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
49
50
51
52
53
54
55
{
"name": "@antv/my-f2",
"version": "2.1.7",
"description": "F2 for alipay mini-program",
"main": "es/index.js",
"module": "es/index.js",
"scripts": {
"build": "npm run clean && rollup -c && npm run cp",
"cp": "node ./scripts/cp.js",
"clean": "rm -rf es",
"lint": "eslint ./src --ext .js",
"ci": "npm run lint"
},
"dependencies": {
"@antv/f2": "~3.8.0",
"@antv/f2-context": "~0.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^6.1.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-egg": "^8.0.0",
"fs-extra": "^8.1.0",
"pre-commit": "^1.2.2",
"rollup": "^1.28.0"
},
"files": [
"es"
],
"repository": {
"type": "git",
"url": "git@github.com:antvis/my-f2.git"
},
"bugs": {
"url": "https://github.com/antvis/my-f2/issues"
},
"keywords": [
"antv",
"f2",
"my-f2",
"myF2",
"alipay mini-program"
],
"author": "https://github.com/orgs/antvis/people",
"license": "MIT",
"pre-commit": {
"run": [
"lint",
"build",
"test"
],
"silent": false
}
}