-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 979 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
37
38
39
40
{
"name": "befunge93",
"version": "1.0.5",
"description": "A fast interpreter for the Befunge language",
"main": "lib/befunge93.js",
"directories": {
"doc": "docs"
},
"bugs": {
"url": "https://github.com/amicloud/befunge93/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/amicloud/befunge93"
},
"homepage": "https://github.com/amicloud/befunge93",
"keywords": [
"esoteric",
"befunge",
"interpreter"
],
"author": "Amy Smith",
"license": "ISC",
"scripts": {
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"test": "mocha",
"mocha": "mocha"
},
"devDependencies": {
"chai": "latest",
"coveralls": "^3.0.2",
"minami": "^1.2.3",
"mocha": "latest",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.0.1",
"sinon": "^6.3.4",
"sinon-chai": "^3.2.0"
}
}