|
1 | 1 | { |
2 | | - "author": "Garth Braithwaite <garthdb@gmail.com> (http://www.garthdb.com)", |
3 | 2 | "name": "topdoc", |
4 | 3 | "description": "Generate usage guides for css", |
5 | 4 | "version": "0.4.0", |
6 | | - "repository": "git@github.com:topcoat/topdoc.git", |
| 5 | + "main": "./lib/topdoc", |
| 6 | + "bin": { |
| 7 | + "topdoc": "./bin/topdoc" |
| 8 | + }, |
| 9 | + "scripts": { |
| 10 | + "prepublish": "npm run compile", |
| 11 | + "compile": "babel -d ./ ./src/", |
| 12 | + "test": "nyc ava", |
| 13 | + "coverage": "nyc npm test", |
| 14 | + "lint": "eslint .", |
| 15 | + "codecov": "nyc report -r lcovonly && codecov", |
| 16 | + "checkdocs": "atomdoc src", |
| 17 | + "validate": "npm run lint && npm run test && npm run checkdocs", |
| 18 | + "release": "semantic-release pre && npm publish && semantic-release post" |
| 19 | + }, |
| 20 | + "repository": { |
| 21 | + "type": "git", |
| 22 | + "url": "https://github.com/topcoat/topdoc.git" |
| 23 | + }, |
7 | 24 | "keywords": [ |
8 | 25 | "css", |
9 | 26 | "style", |
10 | 27 | "documentation", |
11 | 28 | "usage" |
12 | 29 | ], |
13 | | - "licenses": [ |
14 | | - { |
15 | | - "type": "Apache 2.0", |
16 | | - "url": "http://www.apache.org/licenses/LICENSE-2.0.html" |
17 | | - } |
18 | | - ], |
19 | | - "main": "./lib/topdoc", |
20 | | - "bin": { |
21 | | - "topdoc": "./bin/topdoc" |
| 30 | + "author": "Garth Braithwaite <garthdb@gmail.com> (http://garthdb.com)", |
| 31 | + "license": "Apache-2.0", |
| 32 | + "bugs": { |
| 33 | + "url": "https://github.com/topcoat/topdoc/issues" |
22 | 34 | }, |
23 | 35 | "preferGlobal": "true", |
24 | | - "scripts": { |
25 | | - "test": "make test" |
26 | | - }, |
27 | 36 | "dependencies": { |
28 | | - "commander": "~1.2.0", |
29 | | - "css-parse": "~1.4.0", |
| 37 | + "commander": "^2.9.0", |
30 | 38 | "jade": "~0.31.2", |
31 | | - "fs-extra": "~0.6.1", |
32 | | - "async": "~0.2.9", |
33 | | - "ncp": "~0.4.2", |
34 | | - "js-yaml": "~2.1.0", |
35 | | - "clean-css": "~2.0.2" |
| 39 | + "pkginfo": "^0.4.0", |
| 40 | + "postcss": "^5.2.4", |
| 41 | + "postcss-topdoc": "0.0.2", |
| 42 | + "resolve": "^1.1.7" |
36 | 43 | }, |
37 | 44 | "devDependencies": { |
38 | | - "mocha": "~1.11.0", |
39 | | - "should": "~1.2.2", |
40 | | - "topdoc-theme": "0.5.0" |
| 45 | + "atomdoc-cli": "^1.0.1", |
| 46 | + "ava": "^0.16.0", |
| 47 | + "babel-cli": "^6.16.0", |
| 48 | + "babel-core": "^6.17.0", |
| 49 | + "babel-plugin-add-module-exports": "^0.2.1", |
| 50 | + "babel-plugin-istanbul": "^2.0.1", |
| 51 | + "babel-preset-es2015": "^6.16.0", |
| 52 | + "babel-register": "^6.16.3", |
| 53 | + "codecov": "^1.0.1", |
| 54 | + "eslint": "^3.7.0", |
| 55 | + "eslint-config-garthdb": "^0.1.0", |
| 56 | + "nixt": "^0.5.0", |
| 57 | + "nyc": "^8.3.0", |
| 58 | + "semantic-release": "^4.3.5", |
| 59 | + "topdoc-theme": "^0.7.0" |
41 | 60 | }, |
42 | 61 | "engines": { |
43 | 62 | "node": "*" |
|
0 commit comments