-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
101 lines (101 loc) · 2.7 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-fns",
"version": "1.4.0",
"description": "Modern React components, hoc's, and utilities functions.",
"main": "dist/index.js",
"module": "dist/index.es6.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest --env=jsdom",
"test:watch": "npm run test -- --watch",
"start": "cross-env NODE_ENV=development tsc-watch --onSuccess \"rollup -c\"",
"prebuild": "rimraf dist",
"build": "tsc && cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c && rimraf compiled",
"prepublish": "npm run build",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*.{ts,tsx}' 'test/**/*.{ts,tsx}'",
"doctoc": "doctoc .",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredpalmer/react-fns.git"
},
"keywords": [
"react",
"react-fns",
"render-props",
"hoc"
],
"author": "Jared Palmer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaredpalmer/react-fns/issues"
},
"homepage": "https://github.com/jaredpalmer/react-fns#readme",
"devDependencies": {
"@types/jest": "20.0.6",
"@types/node": "^8.0.22",
"@types/prop-types": "15.5.1",
"@types/qs": "^6.5.0",
"@types/react": "16.0.2",
"@types/react-dom": "15.5.1",
"@types/react-test-renderer": "15.5.2",
"cross-env": "5.0.5",
"doctoc": "^1.3.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^5.0.0",
"prettier": "^1.10.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"rollup": "^0.47.6",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1",
"ts-jest": "^20.0.10",
"ts-lint": "^4.5.1",
"tsc-watch": "1.0.8",
"tslint": "^5.9.1",
"tslint-react": "^3.2.0",
"typescript": "^2.4.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"<rootDir>/src/**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"qs": "^6.5.1",
"react-media": "^1.6.1"
}
}