-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "@soundworks/plugin-scripting",
"version": "1.0.1",
"description": "soundworks service for managing and editing shared scripts at runtime",
"authors": [
"Benjamin Matuszewski"
],
"license": "BSD-3-Clause",
"scripts": {
"clean": "rm -Rf client && rm -Rf server && rm -Rf common",
"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-scripting"
},
"dependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-transform-arrow-functions": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"acorn": "^8.0.1",
"lodash.camelcase": "^4.3.0",
"mkdirp": "^1.0.4",
"slugify": "^1.4.5"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"chokidar": "^3.4.2",
"chokidar-cli": "^2.1.0",
"markdown-toc": "^1.2.0"
}
}