-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "literacy",
"description": "Literate programming in JavaScript using reStructuredText.",
"version": "1.1.1",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://github.com/woofwoofinc/literacy",
"repository": {
"type": "git",
"url": "https://github.com/woofwoofinc/literacy.git"
},
"main": "lib/index.js",
"bin": {
"literacy": "./bin/literacy.js"
},
"scripts": {
"build": "literacy src/js --out-dir lib && eslint lib"
},
"dependencies": {
"detab": "^2.0.1",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"lodash": "^4.17.5",
"node-dir": "^0.1.17",
"pegjs": "^0.10.0",
"source-map": "^0.7.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-strict": "^14.0.1",
"literacy": "^1.1.1"
},
"eslintConfig": {
"extends": "strict",
"env": {
"es6": true,
"node": true
},
"rules": {
"arrow-parens": "off",
"id-blacklist": "off",
"id-length": "off",
"indent": "off",
"no-console": "off",
"no-magic-numbers": "off",
"no-multiple-empty-lines": "off",
"no-process-exit": "off",
"no-sync": "off",
"no-underscore-dangle": "off",
"prefer-destructuring": "off",
"padded-blocks": "off"
}
},
"keywords": [
"literate",
"reStructuredText"
]
}