forked from baloise/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "bal-ui-library",
"version": "0.0.0-development",
"description": "Lightweight UI-Component Library for Baloise Applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/bal-ui-library/bal-ui-library.js",
"files": [
"dist/",
"loader/",
"www/",
"src/scss/"
],
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"start": "docsify start",
"serve": "stencil build --docs --dev --watch --serve",
"generate": "stencil generate",
"lint": "tslint -c tslint.json 'src/**/*.ts' --format stylish",
"build": "stencil build --docs --docs-json dist/docs.json",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@stencil/core": "^1.8.5",
"@stencil/postcss": "1.0.1",
"@stencil/sass": "^1.1.1",
"@types/jest": "^24.0.25",
"@types/luxon": "^1.21.0",
"@types/puppeteer": "1.20.2",
"autoprefixer": "^9.7.3",
"docsify-cli": "^4.4.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"now": "^16.7.3",
"puppeteer": "1.20.0",
"semantic-release": "^15.13.31",
"semantic-release-slack-bot": "1.3.0",
"tslint": "^5.20.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hirsch88/bal-ui-library.git"
},
"dependencies": {
"bulma": "0.8.0",
"luxon": "^1.21.3"
},
"now": {
"env": {
"NODE_ENV": "production"
}
}
}