-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "angel",
"version": "1.0.0",
"description": "A monitor sdk for browsers",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.js --watch",
"build": "rm -rf ./dist && cross-env NODE_ENV=production rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhaosaisai/angel.git"
},
"keywords": [
"monitor",
"sdk",
"performance"
],
"author": "zhaosaisai",
"license": "ISC",
"bugs": {
"url": "https://github.com/zhaosaisai/angel/issues"
},
"homepage": "https://github.com/zhaosaisai/angel#readme",
"devDependencies": {
"@rollup/plugin-replace": "^2.2.1",
"chalk": "^3.0.0",
"cross-env": "^6.0.3",
"prettier": "1.19.1",
"rollup": "^1.27.11",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^3.7.3",
"yorkie": "^2.0.0"
},
"gitHooks": {
"commit-msg": "node scripts/verify-commit"
}
}