-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 749 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 749 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
{
"name": "markscript",
"description": "Execute JavaScript embedded in Markdown files",
"version": "0.5.0",
"author": "Patrick Dubroy <pdubroy@gmail.com> (http://dubroy.com)",
"license": "MIT",
"dependencies": {
"commander": "^2.5.0",
"marked-ast": "0.2.2"
},
"devDependencies": {
"browserify": "^5.9.1",
"eslint": "^0.17.1",
"onchange": "^1.1.0",
"tap-spec": "^1.0.1",
"tape": "^2.13.4",
"watchify": "^1.0.1"
},
"scripts": {
"test": "tape test/*.js | tap-spec",
"test-watch": "onchange . lib test -- npm test",
"prepublish": "npm run test && npm run lint",
"lint": "eslint *.js lib test"
},
"main": "index.js",
"directories": {
"test": "test"
},
"bin": "./cli.js"
}