-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
49 lines (49 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
{
"name": "analytics.js-integrations",
"version": "1.0.1",
"main": "index.js",
"repository": "https://github.com/segmentio/analytics.js-integrations.git",
"author": "Segment",
"license": "See LICENSE",
"private": true,
"workspaces": [
"integrations/*"
],
"scripts": {
"upload-assets": "node scripts/upload-assets.js",
"lint": "lerna exec --since master --no-bail -- npx eslint . --ext .js",
"test": "lerna run --concurrency 5 --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",
"compile": "webpack --config webpack.config.integrations.js && webpack --config webpack.config.middleware.js",
"build": "rm -rf build && yarn compile",
"dev": "concurrently \"yarn --cwd tester serve\" \"webpack --config webpack.config.tester.js --watch\""
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"aws-sdk": "^2.760.0",
"babel-loader": "^8.2.2",
"chai": "4.2.0",
"compression-webpack-plugin": "^6.0.1",
"concurrently": "^5.3.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"husky": "^4.3.8",
"lerna": "^3.15.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"terser-webpack-plugin": "^4.2.1",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@segment/analytics.js-integration": "^3.3.3",
"domify": "1.4.1",
"is-email": "1.0.2"
}
}