-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·30 lines (30 loc) · 998 Bytes
/
package.json
File metadata and controls
executable file
·30 lines (30 loc) · 998 Bytes
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
{
"name": "unknown-js-lib",
"version": "1.1.0",
"description": "official js browser sdk for unk analytics",
"main": "index.js",
"directories": {
"test": "web-sdk-cli/test"
},
"scripts": {
"dev": "npm-run-all --parallel start watch",
"watch": "rollup -c -w --environment SDK_API_HOST:http#//localhost#3000/collect",
"build": "rollup -c --environment BUILD:production,SDK_API_HOST:https#//www.unknownanalytics.com/collect",
"debug": "serve web-sdk-cli/test"
},
"author": "houssem fathallah",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"npm-run-all": "^4.1.5",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4"
}
}