forked from segmentio/analytics.js-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.61 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@segment/analytics.js-core",
"author": "Segment <friends@segment.com>",
"version": "3.9.0",
"description": "The hassle-free way to integrate analytics into any web application.",
"keywords": [
"analytics",
"analytics.js",
"segment",
"segment.io"
],
"main": "lib/index.js",
"scripts": {
"test": "make test",
"lint": "eslint \"./{lib,test}/**/*.js\"",
"format": "prettier-eslint --write --list-different \"./{lib,test}/**/*.{js,json,md}\"",
"precommit": "lint-staged",
"np": "np --no-publish",
"cz": "git-cz",
"commitmsg": "commitlint -E GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "https://github.com/segmentio/analytics.js-core"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/segmentio/analytics.js-core/issues"
},
"homepage": "https://github.com/segmentio/analytics.js-core#readme",
"dependencies": {
"@ndhoule/after": "^1.0.0",
"@ndhoule/clone": "^1.0.0",
"@ndhoule/defaults": "^2.0.1",
"@ndhoule/each": "^2.0.1",
"@ndhoule/extend": "^2.0.0",
"@ndhoule/foldl": "^2.0.1",
"@ndhoule/includes": "^2.0.1",
"@ndhoule/keys": "^2.0.0",
"@ndhoule/map": "^2.0.1",
"@ndhoule/pick": "^2.0.0",
"@segment/canonical": "^1.0.0",
"@segment/is-meta": "^1.0.0",
"@segment/isodate": "^1.0.2",
"@segment/isodate-traverse": "^1.0.1",
"@segment/prevent-default": "^1.0.0",
"@segment/send-json": "^3.0.0",
"@segment/store": "^1.3.20",
"@segment/top-domain": "^3.0.0",
"bind-all": "^1.0.0",
"component-cookie": "^1.1.2",
"component-emitter": "^1.2.1",
"component-event": "^0.1.4",
"component-querystring": "^2.0.0",
"component-type": "^1.2.1",
"component-url": "^0.2.1",
"debug": "^0.7.4",
"extend": "3.0.2",
"inherits": "^2.0.1",
"install": "^0.7.3",
"is": "^3.1.0",
"json3": "^3.3.2",
"new-date": "^1.0.0",
"next-tick": "^0.2.2",
"segmentio-facade": "^3.0.2",
"spark-md5": "^2.0.2",
"uuid": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@segment/analytics.js-integration": "^3.2.1",
"@segment/eslint-config": "^4.0.0",
"browserify": "13.0.0",
"browserify-istanbul": "^2.0.0",
"codecov": "^3.0.2",
"commitizen": "^2.10.1",
"commitlint-circle": "^1.0.0",
"compat-trigger-event": "^1.0.0",
"component-each": "^0.2.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-require-path-exists": "^1.1.8",
"husky": "^0.14.3",
"istanbul": "^0.4.3",
"jquery": "^3.2.1",
"karma": "1.3.0",
"karma-browserify": "^5.0.4",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-junit-reporter": "^1.0.0",
"karma-mocha": "1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"karma-summary-reporter": "^1.5.0",
"lint-staged": "^7.2.0",
"mocha": "^2.2.5",
"np": "^3.0.4",
"phantomjs-prebuilt": "^2.1.7",
"prettier-eslint-cli": "^4.7.1",
"proclaim": "^3.4.1",
"sinon": "^1.7.3",
"snyk": "^1.83.0",
"watchify": "^3.7.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"linters": {
"*.{js,json,md}": [
"prettier-eslint --write",
"git add"
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}