-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
91 lines (91 loc) · 2.84 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
87
88
89
90
91
{
"name": "styled-components-theme",
"version": "1.0.5",
"description": "Defines themes via flexible color selectors for use with styled-components",
"main": "./lib/index.js",
"jsnext:main": "./es/index.js",
"repository": {
"type": "git",
"url": "https://github.com/erikras/styled-components-theme"
},
"scripts": {
"build": "npm run build:lib && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:lib": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/styled-components-theme.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/styled-components-theme.min.js",
"format": "prettier-eslint \"src/**/*.js\" --write --no-semi --single-quote --trailingComma=none",
"clean": "rimraf dist lib",
"lint": "eslint src",
"prepublish": "npm run test && npm run lint && npm run clean && npm run build",
"test": "mocha --compilers js:babel-register --recursive --recursive \"src/**/__tests__/*\"",
"test:watch": "npm test -- --watch",
"test:cov": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
"test:codecov": "cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js"
},
"keywords": [
"react",
"css",
"styled-components",
"theme",
"theming",
"colors"
],
"author": "Erik Rasmussen <[email protected]> (http://github.com/erikras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikras/styled-components-theme/issues"
},
"homepage": "https://github.com/erikras/styled-components-theme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015-no-commonjs": "0.0.2",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"codecov.io": "^0.1.6",
"cross-env": "^5.0.0",
"eslint-config-react-app": "^1.0.4",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.0",
"expect": "^1.20.2",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.0.1",
"prettier": "^1.4.0",
"prettier-eslint-cli": "^4.0.2",
"rimraf": "^2.6.1",
"webpack": "^2.6.1"
},
"dependencies": {
"color": "^1.0.3"
},
"files": [
"README.md",
"lib",
"es",
"dist"
],
"nyc": {
"include": [
"src/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"npmName": "styled-components-theme",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}