This repository was archived by the owner on Aug 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 KB
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
{
"name": "react-amp-components",
"version": "0.8.3",
"description": "React AMP Components",
"main": "./dist/index.js",
"repository": "https://github.com/verkstedt/react-amp-components",
"author": "Georgios Giannoutsos Barkas",
"license": "MIT",
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.2.0"
},
"scripts": {
"dev": "webpack --watch",
"build": "webpack -p",
"lint": "eslint src",
"precommit": "yarn lint",
"prepublish": "NODE_ENV=production yarn build",
"test": "jest",
"test:inspect": "node --inspect-brk node_modules/.bin/jest --runInBand --no-cache --watch"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-env": "^2.4.1",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-react": "^1.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^23.1.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-test-renderer": "^16.2.0",
"semantic-release": "^15.5.2",
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.4"
},
"files": [
"dist"
],
"jest": {
"testMatch": [
"**/__tests__/**/*test.js?(x)"
]
}
}