-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (91 loc) · 2.35 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
{
"name": "react-formable",
"version": "2.4.0",
"description": "A flexible form library for react",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": [
{
"name": "Matt O'Connell"
},
{
"name": "Kevin Welcher"
},
{
"name": "Christine Bryant-Ryback"
}
],
"repository": {
"type": "git",
"url": "https://github.com/willowtreeapps/react-formable.git"
},
"bugs": {
"url": "https://github.com/willowtreeapps/react-formable/issues"
},
"keywords": ["react", "react-component", "form"],
"directories": {
"example": "dist/index"
},
"scripts": {
"test": "yarn && jest",
"build": "yarn && jest && rm -rf dist && tsc",
"start": "yarn && parcel ./examples/index.html",
"deploy": "yarn && yarn run build && npm publish",
"precommit": "lint-staged",
"prettier": "prettier --write \"./**/*.{tsx,ts,js,json}\""
},
"lint-staged": {
"*.{js,ts,tsx,json}": [
"prettier --write \"./**/*.{tsx,ts,js,json}\"",
"git add"
]
},
"author": "Willowtree",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "3.1.6",
"@types/jest": "22.0.0",
"@types/react-dom": "16.0.3",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-react-16-adapter-setup": "^0.1.0",
"jest": "22.0.4",
"lint-staged": "^6.0.0",
"material-ui": "0.20.0",
"parcel-bundler": "^1.3.1",
"prettier": "^1.9.2",
"raf": "^3.4.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-tap-event-plugin": "3.0.2",
"ts-jest": "^22.0.0",
"typescript": "^2.6.2"
},
"dependencies": {
"lodash.debounce": "^4"
},
"peerDependencies": {
"react": ">=15 <17"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": true
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testPathIgnorePatterns": ["dist"],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": ["ts", "tsx", "js", "json"],
"modulePaths": ["src/", "node_modules"],
"moduleDirectories": ["node_modules", "src/ts"],
"setupFiles": ["enzyme-react-16-adapter-setup", "raf/polyfill"]
}
}