This repository has been archived by the owner on May 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "postcss-topdoc",
"version": "1.0.0",
"description": "Topdoc parser built in PostCSS",
"main": "lib/",
"scripts": {
"prepare": "npm run compile",
"compile": "babel -d ./lib/ ./src/",
"test": "nyc ava",
"lint": "eslint .",
"report-coverage": "nyc report -r lcovonly && codecov",
"checkdocs": "atomdoc src",
"validate": "npm run lint && npm run test && npm run checkdocs"
},
"repository": {
"type": "git",
"url": "https://github.com/GarthDB/postcss-topdoc.git"
},
"keywords": [
"topdoc",
"css",
"documentation",
"postcss"
],
"author": "Garth Braithwaite <[email protected]> (http://garthdb.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GarthDB/postcss-topdoc/issues"
},
"homepage": "https://github.com/GarthDB/postcss-topdoc#readme",
"ava": {
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"debug": "^4.1.1",
"js-yaml": "^3.13.1",
"postcss": "^7.0.16"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.4",
"atomdoc-cli": "^1.1.0",
"ava": "^1.4.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^5.1.4",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-plugin-async-await": "0.0.0",
"nyc": "^14.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}