-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 2.46 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
{
"name": "chameleon-ds",
"version": "2.0.0",
"description": "Chameleon Web Components - A collection of lightweight, unidirectional, framework-agnostic elements based on the Chameleon Design System",
"scripts": {
"prepare": "yarn build",
"setup": "yarn install",
"clean": "lerna clean --yes && del-cli node_modules coverage **/dist && git clean -fX",
"test": "karma start",
"test:debug": "karma start --coverage --log-level DEBUG",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test:update-snapshots": "karma start --update-snapshots",
"test:prune-snapshots": "karma start --prune-snapshots",
"dev": "start-storybook -p 60000",
"generate:codecov": "codecov",
"generate:custom-element-file": "wca analyze 'packages/**/src/**/*.js' --outFile custom-elements.json",
"build:ci": "lerna exec --concurrency 2 -- yarn run build",
"build": "lerna exec yarn run build",
"build-storybook": "del-cli docs/assets/storybook/ && build-storybook -o site",
"bump-versions": "lerna version",
"publish-packages": "lerna publish --yes from-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaritzSTL/chameleon.git"
},
"author": "Maritz Motivation Solutions, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaritzSTL/chameleon/issues"
},
"homepage": "https://github.com/MaritzSTL/chameleon#readme",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-react-jsx": "^7.10.1",
"@open-wc/demoing-storybook": "^2.3.6",
"@open-wc/karma-esm": "^2.13.21",
"@open-wc/testing": "^2.5.8",
"@open-wc/testing-karma": "^3.3.10",
"@storybook/theming": "^5.3.19",
"codecov": "^3.6.5",
"deepmerge": "^4.2.2",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"lit-html": "^1.2.1",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"rollup": "^1.20.0",
"sinon": "^7.5.0",
"web-component-analyzer": "^1.0.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}