-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.88 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.88 KB
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
{
"name": "handstand",
"version": "3.1.3",
"main": "main.js",
"author": {
"email": "matt.that@gmail.com",
"name": "Matt That",
"url": "http://matt-that.com"
},
"contributors": [
{
"email": "matt.that@gmail.com",
"name": "Matt That",
"url": "http://matt-that.com"
}
],
"url": "http://tadalabs.io/handstand",
"homepage": "http://tadalabs.io/handstand",
"keywords": "handstand css html js javascript webcomponents",
"repository": {
"type": "git",
"url": "https://github.com/tadalabs/handstand.git"
},
"license": {
"type": "Apache-2.0",
"url": "https://spdx.org/licenses/Apache-2.0"
},
"devDependencies": {
"css-loader": "^3.1.0",
"cssmin": "^0.4.3",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-prettier": "^3.1.0",
"npm-check-updates": "^3.1.20",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"scripts": {
"prepublishOnlu": "npm run release",
"ahead": "rimraf node_modules ; rimraf package-lock.json ; ncu -u ; npm install",
"clean": "rimraf d0x ; rimraf dist ; mkdir -p dist d0x",
"copy": "cp ./resources/html/index.html ./dist",
"docs": "esdoc -c esdoc.json",
"lint": "eslint . --fix",
"webpack": "node_modules/webpack-cli/bin/cli.js",
"snapshot": "npm-run-all clean lint webpack copy",
"release": "npm-run-all --parallel snapshot docs",
"start": "webpack-dev-server"
},
"dependencies": {}
}