-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "plumscript",
"version": "1.0.0",
"description": "PlumScript Programming Language",
"main": "dist/app.js",
"types": "dist/app.d.ts",
"scripts": {
"start": "npx nodemon -e js,plum dist/app.js ./examples/test.plum",
"watch": "npx tsc -w",
"clean": "rm -r dist",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CalebLangbroek/plumscript.git"
},
"keywords": [
"programming",
"language"
],
"author": "Caleb Langbroek",
"license": "MIT",
"bugs": {
"url": "https://github.com/CalebLangbroek/plumscript/issues"
},
"homepage": "https://github.com/CalebLangbroek/plumscript#readme",
"dependencies": {
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^14.17.6",
"jest": "^26.6.3",
"nodemon": "^2.0.12",
"ts-jest": "^26.5.6"
}
}