-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.93 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
{
"name": "@o-rango/orango-demo-tools",
"version": "2.1.0-alpha.7",
"description": "O-RANGO development environoment for web components",
"unpkg": "dist/orango-demo-tools.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs.js",
"es2017": "dist/esm/index.mjs.js",
"jsnext:main": "dist/esm/index.mjs.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"webComponents": "dist/web-components.json",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --prod",
"dev": "stencil build --dev --watch --serve",
"docs": "stencil build --docs",
"docs:data": "stencil build --docs-json ./docs.json",
"release": "standard-version",
"prerelease": "standard-version --prerelease alpha",
"publish-npm": "git push --follow-tags origin master && npm publish --access=public",
"serve": "stencil build --dev --watch --serve",
"start": "npm run dev",
"changelog": "conventional-changelog -p -i CHANGELOG.md -s -r 0",
"test": "NODE_ENV=test jest --no-cache --coverage",
"test.watch": "NODE_ENV=test jest --watch --no-cache",
"test:e2e": "stencil test --spec --e2e"
},
"dependencies": {
"@material/dialog": "^2.0.0",
"@material/fab": "^2.0.0",
"@material/select": "2.0.0",
"@material/snackbar": "^2.0.0",
"@material/toolbar": "^2.0.0"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@stencil/core": "1.0.0-alpha.20",
"@stencil/postcss": "0.1.0",
"@stencil/sass": "latest",
"@stencil/utils": "latest",
"@types/jest": "24.0.12",
"@types/puppeteer": "2.0.0",
"@types/cssnano": "^4.0.0",
"cssnano": "^4.1.10",
"autoprefixer": "^9.5.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.7.1",
"babel-preset-es2015": "6.24.1",
"coveralls": "3.0.3",
"fs-extra": "^7.0.1",
"jest": "24.7.1",
"jest-cli": "24.7.1",
"makeshift": "1.1.0",
"puppeteer": "2.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"standard-version": "5.0.2",
"tslint": "5.16.0",
"tslint-react": "4.0.0",
"workbox-build": "4.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o-rango/orango-demo-tools.git"
},
"author": "Orango Team",
"license": "MIT",
"jest": {
"preset": "@stencil/core/testing",
"transform": {
"^.+\\.js?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!@material/)",
"/node_modules/(?!@material)"
]
},
"bugs": {
"url": "https://github.com/o-rango/orango-demo-tools/issues"
},
"homepage": "https://github.com/o-rango/orango-demo-tools#readme",
"keywords": [
"web",
"components",
"dev",
"tools",
"front-end",
"stenciljs",
"angular",
"react",
"demo",
"scenarios"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}