-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"dependencies": {
"lodash": "^4.17.10",
"sister": "^3.0.1"
},
"description": "Table of contents generator.",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"chai": "^4.1.2",
"eslint-config-canonical": "^12.0.0",
"gitdown": "^2.5.3",
"jsdom": "^12.0.0",
"mocha": "^5.2.0"
},
"keywords": [
"table of contents",
"toc",
"contents"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "contents",
"repository": {
"type": "git",
"url": "http://github.com/gajus/contents.git"
},
"scripts": {
"build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps",
"generate-readme": "gitdown ./.README/README.md --output-file ./README.md",
"lint": "eslint ./src",
"test": "mocha --require @babel/register"
},
"title": "Contents",
"version": "5.0.0"
}