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 16
/
Copy pathpackage.json
73 lines (73 loc) · 1.87 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
{
"name": "hypernova-amp",
"version": "3.2.0",
"description": "Aphrodite bindings for Hypernova",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "rimraf lib && babel src -d lib",
"lint": "eslint src test",
"pretest": "npm run lint",
"test": "npm run build && npm run test:coverage",
"tests-only": "npm run build && npm run test:quick",
"test:coverage": "babel-node node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R tap test/*-test.js",
"test:quick": "babel-node node_modules/.bin/_mocha -R tap test/*-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airbnb/hypernova-amp.git"
},
"keywords": [
"aphrodite",
"css",
"styles",
"react",
"hypernova",
"server",
"render",
"isomorphic",
"universal"
],
"files": [
"README.md",
"lib",
"src",
"test",
".eslintrc",
".babelrc"
],
"author": "Gil Birman <gil.birman@airbnb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/hypernova-amp/issues"
},
"homepage": "https://github.com/airbnb/hypernova-amp",
"peerDependencies": {
"aphrodite": "^0.5.0 || ^1.1.0 || ^2.0.0",
"hypernova": "^2.0.0",
"react": "0.14.x || >= 15.x",
"react-dom": "0.14.x || >= 15.x"
},
"devDependencies": {
"aphrodite": "^0.5.0",
"babel-cli": "^6.22.2",
"babel-preset-airbnb": "^2.2.3",
"chai": "^3.5.0",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"hypernova": "^1.0.0",
"istanbul": "^0.4.5",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.7"
},
"dependencies": {
"sanitize-html": "^1.14.1"
}
}