-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "event-report",
"version": "1.0.0",
"description": "前端埋点统计插件,对标后端数据采集服务。",
"author": "fs821031547",
"homepage": "https://github.com/fs821031547/event-report#readme",
"license": "ISC",
"main": "./dist/StatisticsPlugin.umd.js",
"module": "./dist/StatisticsPlugin.esm.js",
"types": "./declaration/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"dist",
"declaration"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fs821031547/event-report.git"
},
"scripts": {
"declaration": "rm -rf ./declaration && tsc -p tsconfig.build.json",
"build": "rm -rf ./dist && rollup -c && npm run declaration"
},
"bugs": {
"url": "https://github.com/fs821031547/event-report/issues"
},
"peerDependencies": {
"fingerprintjs2": "^2.1.0",
"ua-parser-js": "^0.7.21"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"lerna": "^3.16.4",
"rollup": "^2.1.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.8.3",
"fingerprintjs2": "^2.1.0",
"ua-parser-js": "^0.7.21"
}
}