generated from wbkd/webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "lit-css-var",
"version": "1.0.3",
"description": "A decorator to bind element property to a css variable.",
"scripts": {
"lint": "eslint .",
"start": "webpack serve --config webpack/webpack.config.dev.js",
"build-test": "webpack --config webpack/webpack.config.test.js",
"test-server": "./node_modules/http-server/bin/http-server --path /build/",
"build-test-server": "npm run test-server & npm urn build-test",
"specs": "./node_modules/mocha/bin/mocha tests/*.spec.js",
"test": "npm run build-test-server && npm run specs"
},
"repository": {
"type": "git",
"url": "https://github.com/oriweingart/lit-css-var.git"
},
"keywords": [
"lit",
"lit-element",
"css-variables",
"javascript"
],
"author": "ori.weingart",
"license": "MIT",
"bugs": {
"url": "https://github.com/oriweingart/lit-css-var/issues"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.1",
"core-js": "^3.16.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-webpack-plugin": "^3.0.1",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"http-server": "^13.0.1",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"mocha": "^9.1.1",
"nightmare": "^3.0.2",
"style-loader": "^3.2.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"main": "index.js",
"dependencies": {}
}