-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.74 KB
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": "@databowl/affiliate-tracking",
"version": "0.0.0",
"description": "An affiliate tracking client library for Databowl's affiliate service",
"main": "dist/bundles/affiliate-tracking.umd.js",
"module": "dist/bundles/affiliate-tracking.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test:e2e": "SHOW_MODULE_COMPLAINS=1 npm run build && npx mocha --require mocha-puppeteer-launcher/register \"tests/e2e/**/*.spec.js\" --enable-features=NetworkService",
"clean": "shx rm -rf dist",
"build": "npm run clean && rollup -c",
"buildpack": "npm run build && npm pack"
},
"repository": {
"type": "git",
"url": "git@github.com:Databowl/affiliate-tracking.git"
},
"keywords": [],
"author": "Databowl",
"license": "MIT",
"devDependencies": {
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.15",
"assert": "^1.4.1",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mocha-puppeteer-launcher": "^1.0.1",
"puppeteer": "^1.12.2-next.1549688623724",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.19.2",
"rollup-plugin-uglify-es": "0.0.1",
"shx": "^0.3.2",
"ts-loader": "^5.3.3",
"typescript": "^3.3.1"
},
"dependencies": {
"browser-interaction-time": "^1.2.15",
"fs": "0.0.1-security",
"promise-polyfill": "^8.1.0",
"recaptcha-v3": "^1.2.2",
"rxjs": "^6.4.0",
"url-polyfill": "^1.1.5",
"util": "^0.11.1"
}
}