-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.88 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.88 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
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
{
"name": "react-tapability",
"version": "0.0.1",
"description": "Tap Event Handling and Cancelling for React Components",
"author": "Kraig Walker <kraig_walker@me.com>",
"keywords": [
"react",
"react.js"
],
"repository": {
"type": "git",
"url": "https://github.com/KraigWalker/react-tapability.git"
},
"bugs": {
"url": "https://github.com/KraigWalker/react-tapability/issues"
},
"main": "dist/react-tapability.cjs.js",
"module": "dist/react-tapability.esm.js",
"sideEffects": false,
"files": [
"/dist",
"/src"
],
"config": {
"prettier_target": "*.{js,jsx,md,json} src/**/*.{js,jsx,md,json} test/**/*.{js,jsx,md,json} docs/**/*.{js,jsx,md,json} stories/**/*.{js,jsx,md,json} cypress/**/*.{js,jsx,md,json}"
},
"scripts": {
"test": "jest --config ./jest.config",
"test:ci": "jest test --maxWorkers=2",
"test:browser:ci": "cypress run",
"test:coverage": "yarn test --coverage --coveragePathIgnorePatterns=/debug",
"validate": "yarn prettier:check && yarn lint:eslint & yarn lint:css",
"prettier:check": "yarn prettier --debug-check $npm_package_config_prettier_target",
"prettier:write": "yarn prettier --write $npm_package_config_prettier_target",
"lint:eslint": "yarn eslint \"./**/*.{js,jsx}\"",
"lint:css": "stylelint \"stories/**/*.{js,jsx}\"",
"bundle-size:check": "cross-env SNAPSHOT=match yarn bundle-size:update",
"bundle-size:update": "yarn build:clean && yarn build:dist && yarn build:clean",
"build": "yarn build:clean && yarn build:dist",
"build:clean": "rimraf dist",
"build:dist": "rollup -c",
"storybook": "start-storybook -p 9002",
"build-storybook": "build-storybook -c .storybook -o site",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@storybook/react": "^5.1.11",
"@storybook/theming": "^5.1.11",
"babel-loader": "^8.0.6",
"babel-plugin-dev-expression": "^0.2.2",
"cross-env": "^5.2.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-strip": "^1.2.2",
"rollup-plugin-uglify": "^6.0.3",
"webpack": "^4.39.3"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"license": "MIT",
"jest-junit": {
"output": "test-reports/junit/js-test-results.xml"
}
}