-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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": "erudite",
"version": "0.7.1",
"description": "A JavaScript equivalent to Literate CoffeeScript",
"preferGlobal": true,
"main": "./index.js",
"bin": "./bin/erudite",
"repository": {
"type": "git",
"url": "https://github.com/artisonian/erudite.git"
},
"keywords": [
"literate",
"litjs",
"markdown",
"es6"
],
"author": "Leroy Campbell",
"license": "MIT",
"bugs": {
"url": "https://github.com/artisonian/erudite/issues"
},
"homepage": "https://github.com/artisonian/erudite",
"dependencies": {
"babel-core": "^6.21.0",
"marked": "^0.3.6",
"minimist": "^1.2.0",
"object-assign": "^4.1.0"
},
"devDependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"docco": "^0.7.0",
"multiline": "^1.0.2",
"tape": "^4.0.0"
},
"scripts": {
"docs": "docco --layout linear index.js",
"test": "tape test/*.js"
}
}