This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
83 lines (83 loc) · 2.13 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
{
"name": "hypernova-aphrodite",
"version": "3.0.0",
"description": "Aphrodite bindings for Hypernova",
"main": "lib/index.js",
"browser": "lib/index.browser.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airbnb/hypernova-aphrodite.git"
},
"keywords": [
"aphrodite",
"css",
"styles",
"react",
"hypernova",
"server",
"render",
"isomorphic",
"universal"
],
"files": [
"README.md",
"lib",
"src",
"test",
".eslintrc",
".babelrc"
],
"author": "Josh Perez <josh.perez@airbnb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/hypernova-aphrodite/issues"
},
"homepage": "https://github.com/airbnb/hypernova-aphrodite",
"peerDependencies": {
"hypernova": "^2.0.0",
"react": "0.14.x || >= 15.x",
"react-dom": "0.14.x || >= 15.x",
"aphrodite": "^0.4.0 || ^1.1.0 || ^2"
},
"devDependencies": {
"aphrodite": "^0.4.0 || ^1.1.0 || ^2",
"babel-cli": "^6.26.0",
"babel-preset-airbnb": "^2.6.0",
"chai": "^4.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-helper": "^1.3.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"hypernova": "^2.4.0",
"istanbul": "^0.4.5",
"jsdom": "^9.12.0",
"mocha": "^4.1.0",
"prop-types": "^15.6.2",
"react": "^15 || ^16",
"react-dom": "^15 || ^16",
"rimraf": "^2.6.2",
"sinon": "^5.1.1"
},
"greenkeeper": {
"ignore": [
"jsdom"
]
}
}