-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 768 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 768 Bytes
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
{
"name": "jscreole",
"version": "0.9.0",
"description": "A JavaScript library for parsing Creole 1.0 wiki markup.",
"main": "lib/creole.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register --recursive tests/node",
"test-watch": "npm run test -- -w"
},
"repository": {
"type": "git",
"url": "https://github.com/codeholic/jscreole"
},
"keywords": [
"wikitext",
"jscreole"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/codeholic/jscreole/issues"
},
"homepage": "https://github.com/codeholic/jscreole",
"devDependencies": {
"coffee-script": "^1.9.0",
"fluentnode": "^0.3.4",
"jsdom": "^3.1.0",
"mocha": "^2.1.0"
}
}