-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
86 lines (86 loc) · 2.2 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
81
82
83
84
85
86
{
"name": "resin",
"description": "resin CSS preprocessor",
"main": "lib/index.js",
"bin": {
"rsn": "./bin/index.js"
},
"scripts": {
"compile": "babel -d ./ src/",
"prepublish": "npm run compile",
"test": "ava",
"coverage": "nyc npm test",
"lint": "eslint --ignore-path .gitignore .",
"validate": "npm run lint && npm run compile && npm link && npm run coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"report-coverage": "nyc report -r lcovonly && codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/topcoat/resin.git"
},
"author": "Kristofer Joseph @dam",
"contributors": [
"Garth Braithwaite <[email protected]> (http://garthdb.com)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/topcoat/resin/issues"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"include": [
"src/lib/*.js",
"bin/index.js"
],
"require": [
"babel-register"
]
},
"devDependencies": {
"app-root-path": "^2.0.1",
"ava": "^0.16.0",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.11.6",
"codecov": "^1.0.1",
"cz-customizable": "^4.0.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^11.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"nixt": "^0.5.0",
"nyc": "^8.1.0",
"postcss-csso": "^1.1.2",
"semantic-release": "^4.3.5",
"source-map": "^0.5.6",
"topcoat-button-base": "^1.0.1"
},
"dependencies": {
"autoprefixer": "^6.4.0",
"commander": "^2.9.0",
"perfectionist": "^2.1.4",
"pkginfo": "^0.4.0",
"postcss": "^5.1.2",
"postcss-add-namespace": "^1.0.3",
"postcss-custom-properties": "^5.0.1",
"postcss-deduplicate": "^1.0.1",
"postcss-inherit": "^4.0.0",
"postcss-npm": "^1.1.0",
"postcss-url": "^5.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}