-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 KB
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
44
45
{
"name": "gaintext",
"description": "GainText - plain text source code for the semantic web",
"homepage": "https://github.com/gaintext/gaintext.js",
"keywords": [
"document",
"domain specific language",
"plain text",
"semantic web",
"source code",
"web"
],
"version": "0.0.0",
"author": "Martin Waitz <tali@admingilde.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gaintext/gaintext.js"
},
"bugs": {
"url": "https://github.com/gaintext/gaintext.js/issues"
},
"main": "./lib/gaintext/index.js",
"bin": {
"gaintext": "./bin/gaintext"
},
"scripts": {
"coverage": "mocha -R html-cov > coverage.html",
"lint": "coffeelint src",
"prepublish": "coffee --compile --map --output lib/gaintext/ src/",
"test": "mocha -R dot"
},
"dependencies": {
"mona-parser": "tali/mona#develop",
"nomnom": "^1.8.0"
},
"devDependencies": {
"chai": "^2.2.0",
"coffee-coverage": "^0.4.5",
"coffee-script": "^1.9.1",
"coffeelint": "^1.9.3",
"mocha": "^2.0.1",
"mocha-better-spec-reporter": "^2.0.1"
}
}