-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.49 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
{
"name": "dryadic",
"description": "Declarative, reactive orchestration framework for Creative Coding",
"version": "1.0.0",
"author": "Chris Sattinger <[email protected]>",
"contributors": [
{
"name": "Chris Sattinger",
"email": "[email protected]"
}
],
"dependencies": {
"is-plain-object": "^3.0.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/preset-env": "7.7.1",
"@types/jest": "24.0.23",
"@types/lodash": "4.14.149",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.8.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.1",
"jest": "^24.9.0",
"prettier": "1.19.1",
"ts-jest": "24.1.0",
"typescript": "3.7.2"
},
"license": "MIT",
"keywords": [
"creative coding",
"supercollider",
"typescript"
],
"repository": {
"type": "git",
"url": "git://github.com/crucialfelix/dryadic"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest && npm run lint",
"lint": "eslint --ext .ts src",
"jest": "npm run build && jest --watch",
"watch": "tsc -b src",
"build": "tsc -b src"
},
"eslintIgnore": [
"node_modules",
"lib"
],
"engines": {
"node": ">= 10.0.0"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/src/tsconfig.json"
}
}
}
}