-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 1.82 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
72
73
74
75
76
77
78
79
80
{
"name": "postcss-inherit",
"description": "PostCSS plugin inherit rules from other selectors",
"main": "./lib/index.js",
"scripts": {
"start": "nps",
"test": "nyc ava",
"prepare": "nps build"
},
"repository": {
"type": "git",
"url": "https://github.com/GarthDB/postcss-inherit.git"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"inherit",
"extend"
],
"ava": {
"files": [
"test/*.js"
],
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"nyc": {
"include": [
"./src/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"author": "Garth Braithwaite <garthdb@gmail.com> (http://garthdb.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/garthdb/postcss-inherit/issues"
},
"homepage": "https://github.com/garthdb/postcss-inherit#readme",
"dependencies": {
"debug": "^3.1.0",
"postcss": "^6.0.22",
"postcss-inherit-parser": "^0.2.0"
},
"devDependencies": {
"atomdoc-cli": "^1.1.1",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.6",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"codecov": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"nps": "^5.9.0",
"nyc": "^11.7.3",
"perfectionist": "^2.4.0",
"postcss-import": "^11.1.0",
"topcoat-utils": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"version": "4.1.0"
}