-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.37 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
84
85
86
87
88
89
{
"name": "react-clickable",
"version": "1.1.0",
"description": "Clickable component that enables nesting other button and anchor elements. a11y compliant.",
"main": "lib/index.js",
"module": "es/index.js",
"browser": "dist/index.js",
"files": [
"dist",
"es",
"lib",
"src"
],
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rm -rf dist es lib",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"format": "prettier --write \"**/*.{js,json,md}\"",
"preversion": "npm test",
"version": "git add package.json",
"postversion": "git push && git push --tags",
"prepublish": "npm test && npm run build",
"precommit": "lint-staged && npm test",
"test": "npm run test:flow && npm run test:js -- --coverage",
"test:flow": "flow",
"test:js": "jest"
},
"keywords": [
"react",
"clickable",
"a11y",
"accessibility"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MiroDojkic/react-clickable"
},
"author": "Miro Dojkic <miro@appac.us>",
"license": "ISC",
"sideEffects": false,
"dependencies": {},
"devDependencies": {
"all-contributors-cli": "^4.11.2",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"flow-bin": "^0.75.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-enzyme": "^6.0.2",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.2.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.0.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/testSetup.js",
"coveragePathIgnorePatterns": [
"testSetup.js"
],
"coverageReporters": [
"text",
"lcov"
]
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}