-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.43 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
{
"name": "formstrap",
"version": "1.1.3",
"license": "MIT",
"author": "pedox",
"main": "dist/index.js",
"module": "dist/formstrap.esm.js",
"typings": "dist/index.d.ts",
"homepage": "https://pedox.github.io/formstrap/",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pedox/formstrap.git"
},
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"gh-pages": "cd example && yarn build",
"deploy-gh-pages": "gh-pages -d example/dist"
},
"peerDependencies": {
"@types/jest": "^24.9.0",
"bootstrap": "^4.6.0",
"formik": "^2.2.1",
"react": ">=16",
"reactstrap": "^8.9.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"bootstrap": "^4.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"formik": "^2.2.6",
"gh-pages": "^2.1.1",
"husky": "^4.3.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"reactstrap": "^8.9.0",
"ts-jest": "^24.3.0",
"tsdx": "^0.13.2",
"tslib": "^1.10.0",
"typescript": "^4.0.5"
}
}