-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "prop-styles",
"version": "2.0.0",
"description": "Utility to create flexible React components which accepts props to enable/disable certain styles.",
"author": "Peter Schussheim <peter@schussheim.com> (https://peterschussheim.com/)",
"license": "AGPL-3.0",
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf lib",
"build": "babel --copy-files --out-dir lib src",
"start": "yarn build",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/peterschussheim/prop-styles.git"
},
"files": [
"lib"
],
"keywords": [
"styles",
"css",
"glamorous",
"styled-components"
],
"bugs": {
"url": "https://github.com/peterschussheim/prop-styles/issues"
},
"homepage": "https://github.com/peterschussheim/prop-styles#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.11.0",
"rimraf": "2.6.2",
"semantic-release": "^8.2.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}