-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 914 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
{
"name": "@pounce-lang/core",
"version": "3.0.1",
"description": "A concatenative programming language written in Javascript, Pounce has roots in Forth, Joy, Cat and Kitten.",
"main": "dist/index.js",
"module": "dist/index.ems.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"publish": "rollup -c; npm publish --access public",
"test": "node ./tests/parser_test.js; node ./tests/index.js"
},
"repository": "https://github.com/pounce-lang/core.git",
"author": "Nate Morse",
"license": "MIT",
"devDependencies": {
"@types/ramda": "^0.26.38",
"rollup": "^1.27.13",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^3.7.3",
"canopy": "^0.3.0"
},
"dependencies": {
"junify": "^1.0.2",
"number-precision": "^1.4.0",
"prando": "^5.1.2",
"ramda": "^0.27.0"
}
}