forked from segmentio/analytics.js-integrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "analytics.js-integrations",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/segmentio/analytics.js-integrations.git",
"author": "Segment",
"license": "See LICENSE",
"private": true,
"workspaces": [
"integrations/*"
],
"devDependencies": {
"@segment/eslint-config": "^4.0.0",
"browserify": "^16.2.3",
"browserify-istanbul": "^3.0.1",
"codecov": "^3.1.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^1.1.2",
"karma": "^3.0.0",
"karma-browserify": "^6.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^1.2.0",
"karma-spec-reporter": "^0.0.32",
"lint-staged": "^7.2.2",
"nyc": "^13.0.1",
"prettier": "^1.14.3",
"prettier-eslint-cli": "^4.7.1",
"segmentio-facade": "^3.2.3",
"standard": "^11.0.1",
"watchify": "^3.11.0"
},
"scripts": {
"clean": "rm -rf *.log coverage bin/* node_modules",
"coverage": "codecov",
"fmt": "standard --fix",
"lint": "eslint integrations/**/lib/ integrations/**/test/",
"publish-integrations": "scripts/publish-integrations",
"test-all-integrations": "karma start karma.conf.js all",
"test-integration": "karma start karma.conf.js",
"test-updated-integrations": "scripts/test-integrations",
"precommit": "lint-staged",
"coverage-report": "open coverage/report/index.html"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint"
]
}
},
"standard": {
"env": [
"mocha"
]
}
}