-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 877 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
36
{
"name": "sky-lang",
"version": "0.0.12-beta",
"description": "Musical Language",
"main": "dist/main.js",
"repository": "github.com/sezna/sky",
"author": "Alex Hansen",
"scripts": {
"build": "tsc",
"start": "tsc; node ./dist/main.js",
"format": "prettier --write \"**/*.ts\"",
"test": "yarn build; jest",
"test-interactive": "yarn build; jest --watch",
"watch": "nodemon -e ts -w ./src -x \"yarn build\""
},
"files": [
"/dist"
],
"license": "GPL-3.0-only",
"prepublish": "tsc",
"private": false,
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/node": "^12.11.1",
"jest": "^24.9.0",
"nodemon": "^2.0.4",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"fp-ts": "^2.1.1",
"lodash": "^4.17.15"
}
}