-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "forth",
"version": "0.17.0",
"description": "Forth programming environment",
"main": "lib/index.js",
"bin": {
"forth": "./bin/forth.js"
},
"scripts": {
"test": "eslint lib/*.js test/*.js && mocha test/word.js test/interpret.js test/create.js test/vocabulary.js",
"cover": "istanbul cover _mocha -- test/word.js test/interpret.js test/create.js test/vocabulary.js",
"core": "./bin/forth.js < test/core.frt"
},
"repository": {
"type": "git",
"url": "https://github.com/drom/forth.git"
},
"keywords": [
"forth"
],
"author": "drom",
"license": "MIT",
"bugs": {
"url": "https://github.com/drom/forth/issues"
},
"homepage": "https://github.com/drom/forth",
"dependencies": {
"chai": "^3.5.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"concat-stream": "^1.6.0",
"escodegen": "^1.8.1",
"esprima": "^3.1.3",
"estraverse": "^4.2.0",
"jsof": "^0.2.1",
"long": "^3.2.0"
},
"devDependencies": {
"eslint": "^2.13.1",
"istanbul": "^0.4.4",
"mocha": "^3.2.0"
}
}