-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.22 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
{
"name": "hypernova-styled-components",
"version": "1.1.0",
"description": "Styled Components bindings for Hypernova",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"clean": "rimraf lib coverage",
"prebuild": "npm run clean",
"build": "babel src -d lib",
"lint": "eslint --ext=js,jsx src test",
"pretest": "npm run lint",
"test": "npm run coverage",
"tests-only": "npm run test:quick",
"precoverage": "npm run build",
"coverage": "babel-node \"$(which istanbul)\" cover \"$(which _mocha)\" -- -R tap test/*-test.js",
"pretest:quick": "npm run build",
"test:quick": "babel-node \"$(which _mocha)\" -R tap test/*-test.js",
"format": "prettier-eslint --write \"src/*.js\" \"test/*.js\" \"src/**/*.jsx\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/viatsko/hypernova-styled-components.git"
},
"keywords": [
"css",
"styles",
"react",
"hypernova",
"server",
"render",
"styled-components",
"isomorphic",
"universal"
],
"files": [
"README.md",
"lib",
"src",
"test",
".eslintrc",
".babelrc"
],
"author": "Valerii Iatsko <viatsko@viatsko.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/viatsko/hypernova-styled-components/issues"
},
"homepage": "https://github.com/viatsko/hypernova-styled-components",
"peerDependencies": {
"hypernova": "^2.0.0",
"react": "0.14.x || >= 15.x",
"react-dom": "0.14.x || >= 15.x",
"styled-components": "^3.0.0"
},
"devDependencies": {
"aphrodite": "^1.2.5",
"babel-cli": "^6.26.0",
"babel-preset-airbnb": "^2.4.0",
"chai": "^4.1.2",
"enzyme-adapter-react-helper": "^1.2.3",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"hypernova": "^2.1.3",
"istanbul": "^0.4.5",
"jsdom": "^11.9.0",
"mocha": "^4.0.1",
"prettier": "^1.12.1",
"prettier-eslint-cli": "^4.7.1",
"prop-types": "^15.6.0",
"react": "^15 || ^16",
"react-dom": "^15 || ^16",
"rimraf": "^2.6.2",
"sinon": "^4.5.0",
"styled-components": "^3.2.6"
}
}