-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 995 Bytes
/
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
{
"name": "@soundworks/plugin-platform",
"version": "1.0.2",
"description": "soundworks plugin for simplifying initialization of clients",
"authors": [
"Benjamin Matuszewski"
],
"license": "BSD-3-Clause",
"scripts": {
"clean": "rm -Rf client && rm -Rf server",
"toc": "markdown-toc -i README.md",
"prepublishOnly": "npm run build",
"build": "npm run toc && npm run clean && babel src --out-dir .",
"dev": "npm run build && chokidar src/ -c \"babel src --out-dir .\""
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/collective-soundworks/soundworks-plugin-platform"
},
"dependencies": {
"mobile-detect": "^1.3.7",
"nosleep.js": "^0.11.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"chokidar": "^3.2.2",
"chokidar-cli": "^2.0.0",
"markdown-toc": "^1.2.0"
}
}