forked from userdive/agent.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.74 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
{
"author": "UNCOVER TRUTH Inc.",
"bugs": {
"url": "https://github.com/userdive/agent.js/issues"
},
"devDependencies": {
"@types/faker": "6.6.8",
"@types/is-url": "1.2.30",
"@types/karma-fixture": "0.2.5",
"@types/mocha": "9.1.1",
"@types/node": "16.11.36",
"@types/object-assign": "4.0.30",
"@types/puppeteer": "5.4.6",
"@types/sinon": "10.0.11",
"@types/terser-webpack-plugin": "5.0.4",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"@uncovertruth/stylelint-config": "4.4.0",
"@uncovertruth/textlint-config-en": "4.0.0",
"can-npm-publish": "1.3.6",
"codecov": "3.8.2",
"concurrently": "7.2.1",
"cross-env": "7.0.3",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"faker": "6.6.6",
"fixpack": "4.0.0",
"gh-pages": "4.0.0",
"husky": "8.0.1",
"is-url": "1.2.4",
"istanbul-instrumenter-loader": "3.0.1",
"jstransformer-markdown-it": "2.1.0",
"karma": "6.3.20",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-fixture": "0.2.6",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sauce-launcher": "4.3.6",
"karma-webpack": "5.0.0",
"lerna": "4.0.0",
"lerna-changelog": "2.2.0",
"lint-staged": "12.4.1",
"mocha": "10.0.0",
"npm-run-all": "4.1.5",
"power-assert": "1.6.1",
"prettier-eslint-cli": "6.0.1",
"pug-lint": "2.6.0",
"pug-lint-config-uncovertruth": "4.2.0",
"puppeteer": "14.1.1",
"rimraf": "3.0.2",
"sinon": "14.0.0",
"size-limit": "7.0.8",
"stylelint": "14.8.3",
"terser-webpack-plugin": "5.3.1",
"textlint": "12.1.1",
"ts-loader": "9.3.0",
"ts-node": "10.8.0",
"typescript": "4.6.4",
"webpack": "5.72.1",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0",
"webpack-espower-loader": "2.0.0"
},
"engine": {
"node": "> 5"
},
"homepage": "https://github.com/userdive/agent.js#readme",
"keywords": [
"userdive"
],
"license": "GPL-3.0",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/userdive/agent.js.git"
},
"scripts": {
"build": "lerna run build --parallel",
"build:examples": "lerna run build --scope userdive-examples",
"bump": "lerna publish --skip-npm --skip-git && lerna-changelog",
"ci:appveyor": "cross-env CI_MODE=IE karma start",
"ci:sauce": "cross-env CI_MODE=sauce karma start",
"clean": "lerna clean --yes && lerna run clean && rimraf cdn coverage",
"coverage": "codecov -f ./coverage/lcov.info",
"deploy:examples": "gh-pages -d examples/build/agent.js -m '[ci skip] Updates'",
"dry-release": "lerna exec --no-bail -- 'can-npm-publish && npm root && echo done; echo skip'",
"e2e": "lerna run e2e",
"lint": "run-p lint:*",
"lint:md": "textlint 'packages/*/*.md' README.md docs",
"lint:packages": "lerna run lint --stream",
"lint:ts": "eslint -c ./.eslintrc.js 'packages/*/{src,test}/**/*.ts' 'examples/**/*.ts{,x}'",
"lint:types": "tsc",
"postbuild": "webpack --mode production && size-limit && cp robots.txt ./cdn",
"precommit": "lint-staged",
"prepare": "lerna run build --scope userdive --scope @userdive/* --stream",
"release": "lerna exec --no-bail -- 'can-npm-publish && npm publish --access public && echo done ; echo skip'",
"start": "lerna run start --scope userdive-examples --scope userdive-developers --stream",
"test": "karma start"
},
"workspaces": [
"packages/*",
"website",
"examples/*",
"examples"
]
}