-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 943 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": "pipescript-dev-kit",
"version": "1.6.0",
"description": "A programming language that revolves around piping",
"main": "build/pipescript.js",
"type": "module",
"scripts": {
"buildc": "rollup -c compiler/rollup.config.js",
"buildi": "rollup -c interpreter/rollup.config.js",
"devi": "nodemon interpreter/interpreter.js test.pipescript",
"devc": "nodemon compiler/compiler.js test.pipescript test.js",
"test": "sh test.sh"
},
"repository": {
"type": "git"
},
"bin": {
"pipescript": "build/pipescript.js",
"psc": "build/psc.js"
},
"keywords": [
"language"
],
"author": "Ayushman Tripathy",
"license": "MIT",
"bugs": {
"url": "https://github.com/AyushmanTripathy/pipe-script/issues"
},
"homepage": "https://github.com/AyushmanTripathy/pipe-script",
"devDependencies": {
"rollup-plugin-uglify": "^5.0.2"
},
"dependencies": {
"btss": "^1.0.0"
}
}