-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.57 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
{
"name": "postcss-npm",
"version": "1.1.0",
"description": "Import CSS from npm modules using rework",
"main": "./lib/index.js",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "ava",
"coverage": "nyc npm test",
"report-coverage": "nyc report -r lcovonly && codecov",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GarthDB/postcss-npm.git"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"import",
"npm",
"modules"
],
"nyc": {
"include": [
"src/*.js"
],
"require": [
"babel-register"
]
},
"ava": {
"require": ["babel-register"]
},
"author": "Garth Braithwaite <garthdb@gmail.com> (http://garthdb.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GarthDB/postcss-npm/issues"
},
"homepage": "https://github.com/GarthDB/postcss-npm#readme",
"dependencies": {
"debug": "^2.2.0",
"postcss": "^5.1.2",
"resolve": "^1.1.7"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"codecov": "^2.2.0",
"eslint": "^4.0.0",
"node-sass": "^3.8.0",
"nyc": "^11.0.2",
"perfectionist": "^2.2.0",
"postcss-inherit-parser": "^0.1.4",
"source-map": "^0.5.6",
"topcoat-utils": "^0.4.1"
}
}