-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "WiredPanels",
"version": "0.0.0-semantic-release",
"authors": [
"Alexander Meißner",
"Markus Felten"
],
"license": "MIT",
"description": "Panels with sockets connected by bezier curve wires",
"main": "./WiredPanels.js",
"type": "module",
"scripts": {
"test": "ava",
"docs": "documentation readme WiredPanels.js --section=API",
"lint": "documentation lint WiredPanels.js",
"semantic-release": "semantic-release"
},
"bugs": {
"url": "https://github.com/Symatem/WiredPanels/issues"
},
"homepage": "https://github.com/Symatem/WiredPanels#readme",
"repository": {
"type": "git",
"url": "https://github.com/Symatem/WiredPanels.git"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.25.0",
"documentation": "^8.0.0",
"koa": "^2.6.1",
"koa-static": "^5.0.0",
"looks-same": "^4.0.0",
"make-dir": "^1.3.0",
"puppeteer": "^1.9.0",
"semantic-release": "^15.6.0"
},
"ava": {
"files": [
"tests/*-test.js"
],
"require": [
"babel-register"
]
}
}