forked from segmentio/analytics.js-integrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"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/*"
],
"scripts": {
"lint": "lerna exec --since master --no-bail -- npx eslint . --ext .js",
"test": "lerna run --concurrency 1 --since master test --stream -- --single-run --reporters summary --log-level error",
"test:ci": "lerna run --concurrency 1 --stream --since master test:ci -- --log-level error",
"fmt": "lerna exec --since master -- npx eslint . --fix --ext .js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn fmt",
"git add"
]
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.4.1",
"lerna": "^3.15.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2"
}
}