-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
77 lines (77 loc) · 2.21 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "branch-sdk",
"version": "0.0.0",
"description": "Branch Metrics Deep Linking/Smart Banner Web SDK",
"main": "dist/build.min.js",
"files": [
"dist/build.min.js"
],
"scripts": {
"build": "make",
"ci": "npm ci",
"clean": "npm-run-all clean:*",
"clean:dist": "rimraf dist/*",
"clean:coverage": "rimraf .nyc_output coverage",
"clean:test-report": "rimraf test-results.json",
"clean-and-develop": "npm-run-all ci clean build cover",
"commit": "git-cz",
"cover": "npm-run-all cover:*",
"cover:clean": "npm run clean:coverage",
"cover:report": "npx nyc@latest mocha",
"lint": "./lint.sh",
"test": "mocha",
"test-debug": "mocha --inspect-brk --require test/setup.js --reporter spec --timeout 10000 test/*.js",
"test-report": "mocha --reporter json > test-results.json",
"builddocs": "jsdox src/3_branch_web.js --output docs/web",
"prepare": "husky install",
"validate": "npm ls",
"start:dev": "node startDev.js"
},
"repository": {
"type": "git",
"url": "https://github.com/BranchMetrics/web-branch-deep-linking-attribution.git"
},
"author": "Dmitri Gaskin <[email protected]>",
"contributors": [
"Jagadeesh Karicherla"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BranchMetrics/web-branch-deep-linking-attribution/issues",
"email": "[email protected]"
},
"homepage": "https://help.branch.io/developers-hub/docs/web-sdk-overview",
"devDependencies": {
"commitizen": "^4.3.0",
"cz-customizable": "^7.0.0",
"falafel": "2.2.5",
"global-jsdom": "24.0.0",
"google-closure-compiler": "^20240317.0.0",
"google-closure-deps": "^20230802.0.0",
"google-closure-library": "^20230802.0.0",
"husky": "^9.0.11",
"i": "^0.3.7",
"inquirer": "^9.2.15",
"jscs": "2.0.0",
"jsdom": "24.0.0",
"jshint": "^2.13.6",
"koa": "^2.15.0",
"koa-static": "^5.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"precommit-hook": "3.0.0",
"rimraf": "^5.0.1",
"sinon": "16.0.0"
},
"build": "2.71.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"pre-commit": [
"lint",
"validate",
"test"
]
}