-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
79 lines (79 loc) · 2.17 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
{
"name": "react-amp-template",
"version": "4.1.0",
"description": "AMP react server rendering.",
"keywords": [
"preact",
"react",
"amp",
"server-rendering",
"react-amp",
"amp-react",
"template",
"aphrodite",
"styledcomponent"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Ariel-Rodriguez/react-amp-template.git"
},
"scripts": {
"build": "rimraf lib && babel src -d lib -s",
"dev": "nodemon --watch ./src --ext js,jsx --exec 'npm run prepare && npm run build && npm run test'",
"prepare": "npm test",
"prepublishOnly": "NODE_ENV=production && npm run build && echo build using $NODE_ENV env",
"test": "npm run -s lint && BABEL_ENV=test nyc ava",
"test:watch": "npm test -- --watch",
"lint": "eslint --fix --ext .jsx --ext .js src/.",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t $CODECOV_TOKEN"
},
"author": "Ariel Fernando Rodriguez",
"license": "Apache-2.0",
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"babel": {
"extends": "./config/.babelrc"
},
"eslintConfig": {
"extends": "./config/.eslintrc.json"
},
"engines": {
"node": ">=8.0.0",
"yarn": ">=1.5.0"
},
"dependencies": {
"pretty": "^2.0.0",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"styled-components": "^3.4.10"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-styled-components": "^1.8.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"debug": "^4.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"mkdirp": "^0.5.1",
"nyc": "^11.9.0",
"react-test-renderer": "^16.6.0",
"rimraf": "^2.6.2"
}
}