-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "@woopra/browser-tracker",
"description": "Woopra Browser Tracker",
"version": "5.3.0",
"homepage": "https://github.com/Woopra/browser-tracker",
"repository": "github:Woopra/browser-tracker",
"bugs": {
"url": "https://github.com/Woopra/browser-tracker/issues",
"email": "[email protected]"
},
"author": "Billy Vong <[email protected]> (https://github.com/billyvg)",
"contributors": [
"Elie Khoury <[email protected]> (https://github.com/eliekhoury)",
"Tyson Cleary <[email protected]> (https://github.com/tyscorp)"
],
"main": "dist/w.js",
"module": "./src/index.js",
"files": [
"LICENSE",
"dist",
"src"
],
"license": "MIT",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:watch": "rollup -c rollup.config.watch.js -w",
"build:snippet": "rollup -c rollup.config.snippet.js",
"test": "browserstack-runner"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"@optimize-lodash/rollup-plugin": "^1.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"babel-plugin-lodash": "^3.3.4",
"browserstack-runner": "^0.9.4",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"prettier": "^2.4.0",
"pretty-quick": "^3.1.1",
"rollup": "^2.56.3",
"rollup-plugin-license": "^2.7.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}