-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.74 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.74 KB
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": "4.1.5",
"@types/is-url": "1.2.28",
"@types/karma-fixture": "0.2.5",
"@types/mocha": "5.2.6",
"@types/node": "11.13.11",
"@types/object-assign": "4.0.30",
"@types/puppeteer": "1.12.4",
"@types/sinon": "5.0.7",
"@types/terser-webpack-plugin": "1.2.1",
"@types/webpack": "4.4.32",
"@typescript-eslint/eslint-plugin": "1.9.0",
"@typescript-eslint/parser": "1.9.0",
"@uncovertruth/stylelint-config": "4.4.0",
"@uncovertruth/textlint-config-en": "4.0.0",
"can-npm-publish": "1.3.1",
"codecov": "3.5.0",
"concurrently": "4.1.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"faker": "4.1.0",
"fixpack": "2.3.1",
"gh-pages": "2.0.1",
"husky": "1.3.1",
"is-url": "1.2.4",
"istanbul-instrumenter-loader": "3.0.1",
"jstransformer-markdown-it": "2.1.0",
"karma": "3.1.4",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.5",
"karma-fixture": "0.2.6",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-sauce-launcher": "1.2.0",
"karma-webpack": "3.0.5",
"lerna": "3.14.1",
"lerna-changelog": "0.8.2",
"lint-staged": "8.1.7",
"mocha": "6.1.4",
"npm-run-all": "4.1.5",
"power-assert": "1.6.1",
"prettier-eslint-cli": "4.7.1",
"pug-lint": "2.5.0",
"pug-lint-config-uncovertruth": "4.2.0",
"puppeteer": "1.17.0",
"rimraf": "2.6.3",
"sinon": "5.1.1",
"size-limit": "1.3.5",
"stylelint": "10.0.1",
"terser-webpack-plugin": "1.3.0",
"textlint": "11.2.5",
"ts-loader": "5.4.5",
"ts-node": "8.2.0",
"typescript": "3.4.5",
"webpack": "4.32.2",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.4.1",
"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://git@github.com/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"
]
}