forked from hybridsjs/hybrids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.23 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
{
"name": "hybrids",
"version": "4.3.3",
"description": "The simplest way to create web components with plain objects and pure functions!",
"sideEffects": false,
"main": "./lib/index.js",
"module": "./esm/index.js",
"browser": "./esm/index.js",
"types": "types/index.d.ts",
"homepage": "https://hybrids.js.org",
"repository": "https://github.com/hybridsjs/hybrids",
"bugs": "https://github.com/hybridsjs/hybrids/issues",
"author": "Dominik Lubański <dominik.lubanski@gmail.com>",
"license": "MIT",
"keywords": [
"web components",
"web-components",
"custom elements",
"shadow dom",
"template engine",
"user interface",
"ui library",
"framework",
"pwa",
"functional"
],
"scripts": {
"dev": "karma start",
"dev:coverage": "rm -rf ./coverage && NODE_ENV=coverage npm run dev",
"test": "karma start --single-run",
"test:coverage": "rm -rf ./coverage && NODE_ENV=coverage npm run test",
"coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
"build": "npm run build:lib && npm run build:esm && npm run build:dist",
"build:lib": "rm -rf ./lib && NODE_ENV=cjs babel ./src -d ./lib -s inline",
"build:esm": "rm -rf ./esm && babel ./src -d ./esm -s inline",
"build:dist": "rm -rf ./dist && webpack",
"release": "npm run test && npm run build && standard-version"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@webcomponents/webcomponentsjs": "^2.4.3",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"core-js": "^3.6.5",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-jasmine": "^3.1.1",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"prettier": "^1.19.1",
"standard-version": "^7.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}