-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "miraweb-repo",
"description": "",
"version": "1.2.7",
"author": {
"name": "Cycling '74",
"url": "http://cycling74.com"
},
"contributors": [
"Florian Demmer <[email protected]>",
"Sam Tarakajian <[email protected]>",
"Cassie Tarakajian <[email protected]>",
"Ben Bracken <[email protected]>",
"Rohail Atlaf <[email protected]>",
"Emmanuel Jourdan <[email protected]>"
],
"homepage": "http://cycling74.com",
"bugs": "https://github.com/Cycling74/miraweb/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Cycling74/miraweb.git"
},
"scripts": {
"build": "cross-env MW_RELEASE=false node ./scripts/build.js",
"build-release": "cross-env MW_RELEASE=true node ./scripts/build.js",
"clean": "node ./scripts/clean.js",
"lint": "eslint ./ -c ./.eslintrc.js",
"lint-fix": "eslint ./ -c ./.eslintrc.js --fix",
"postinstall": "node ./scripts/postinstall.js",
"publish": "node ./scripts/publish.js",
"postpublish": "node ./scripts/postpublish.js",
"serve": "node ./scripts/serve.js",
"setversion": "node ./scripts/setversion.js",
"test": "node ./scripts/test.js"
},
"dependencies": {
"babel-eslint": "^10.0.1"
},
"devDependencies": {
"cross-env": "^3.2.4",
"eslint": "^5.10.0",
"eslint-config-c74": "^1.0.0",
"gh-pages": "^2.0.1",
"rimraf": "^2.6.2"
},
"private": true,
"workspaces": [
"packages/*",
"src"
],
"engines": {
"node": "10.13.x"
}
}