-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 2.07 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
{
"name": "react-css-component",
"version": "1.0.2",
"description": "Injecting CSS via React Components",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"LICENSE",
"README.md",
"lib/**",
"es/**"
],
"keywords": [
"react",
"css",
"css-in-js",
"scoped-css",
"style",
"styling",
"scoped-style"
],
"scripts": {
"build": "babel src -d es --ignore __tests__ && BABEL_ENV=commonjs babel src -d lib --ignore __tests__",
"clean": "rimraf es lib coverage",
"check": "yarn format && yarn lint && yarn test:coverage",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint src/**/*.js",
"release": "git pull --rebase && yarn setup && yarn run check && npm publish",
"test": "cross-env BABEL_ENV=commonjs jest",
"test:coverage": "cross-env BABEL_ENV=commonjs jest --coverage",
"watch": "yarn test -- --watch",
"setup": "yarn run clean && yarn build"
},
"jest": {
"testEnvironment": "node"
},
"repository": "https://github.com/rofrischmann/react-css-component.git",
"author": "Robin Frischmann <robin@rofrischmann.de>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"codeclimate-test-reporter": "^0.3.1",
"cross-env": "^5.1.3",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.2",
"jsdom": "^11.6.2",
"prettier": "^1.11.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"prop-types": "*",
"react": "^16.0.0"
}
}