-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
69 lines (69 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "supercolliderjs",
"description": "JavaScript library for the SuperCollider music language and synthesis server",
"version": "1.0.1",
"author": "Chris Sattinger <[email protected]>",
"contributors": [
{
"name": "Chris Sattinger",
"email": "[email protected]"
}
],
"private": true,
"dependencies": {},
"devDependencies": {
"@types/jest": "24.0.23",
"@types/js-yaml": "3.12.1",
"@types/lodash": "4.14.149",
"@types/rx": "4.1.1",
"@types/temp": "0.8.34",
"@typescript-eslint/eslint-plugin": "2.10.0",
"@typescript-eslint/parser": "2.10.0",
"docsify-cli": "4.4.0",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.1",
"jest": "^24.9.0",
"lerna": "3.19.0",
"mustache": "3.1.0",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"ts-jest": "24.2.0",
"typedoc": "0.15.3",
"typescript": "3.7.3"
},
"license": "MIT",
"keywords": [
"supercollider",
"synthesis",
"music",
"sound",
"creative-coding",
"creative"
],
"repository": {
"type": "git",
"url": "git://github.com/crucialfelix/supercolliderjs"
},
"scripts": {
"postinstall": "npm run bootstrap && npm run build",
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna exec -- tsc -b .",
"test": "npm run jest && npm run lint",
"jest": "lerna exec -- jest --rootDir=. --config=../jest.config.json --passWithNoTests",
"lint": "eslint --ext .ts packages/",
"clean": "lerna exec -- rimraf lib && lerna exec -- rm -f tsconfig.tsbuildinfo",
"docs:api": "./tasks/typedocs.sh",
"docs:md": "node ./tasks/make-docs.js",
"docs:build": "npm run build && npm run docs:api && npm run docs:export-index && npm run docs:md",
"docs:serve": "docsify serve docs",
"docs:export-index": "lerna exec -- node $(PWD)/tasks/export-index.js"
},
"eslintIgnore": [
"node_modules",
"lib"
],
"engines": {
"node": ">= 10.0.0"
}
}