forked from Topdoc/topdoc-default-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "topdoc-default-template",
"version": "0.1.1",
"description": "The most basic Topdoc theme.",
"main": "./lib/",
"scripts": {
"prepublish": "npm run compile",
"compile": "babel -d ./lib/ ./src/",
"checkdocs": "atomdoc src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/topcoat/topdoc-default-template.git"
},
"keywords": [
"topdoc-theme"
],
"author": "Garth Braithwaite <[email protected]> (http://garthdb.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/topcoat/topdoc-default-template/issues"
},
"homepage": "https://github.com/topcoat/topdoc-default-template#readme",
"dependencies": {
"fs-extra": "^0.30.0",
"glob": "^7.1.1",
"pug": "^2.0.0-beta6"
},
"devDependencies": {
"atomdoc-cli": "^1.0.3",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.3",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"cz-customizable": "^4.0.0",
"eslint": "^3.8.1",
"eslint-config-garthdb": "^0.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}