-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.71 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
{
"name": "react-best-modal",
"version": "1.1.2",
"description": "Simple is best. Accessible out of the box, tiny api, bring your own styles. ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esnext/index.tsx",
"author": "madou",
"license": "MIT",
"homepage": "https://github.com/madou/react-best-modal#readme",
"keywords": [
"react",
"modal",
"dialog",
"modal-dialog",
"simple",
"lightweight"
],
"scripts": {
"tdd": "jest --watch",
"test": "jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs",
"build": "rm -rf dist && tsc && tsc -p ./tsconfig.next.json",
"prepublish": "yarn build",
"preversion": "yarn test",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"codecov": "codecov"
},
"peerDependencies": {
"react": ">=16.x.x",
"react-focus-lock": ">=1.x.x"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.2",
"@storybook/addon-info": "^3.3.3",
"@storybook/addon-links": "^3.3.2",
"@storybook/addons": "^3.3.2",
"@storybook/react": "^3.3.2",
"@types/enzyme": "^3.1.6",
"@types/jest": "^22.0.0",
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.3",
"@types/react-transition-group": "^2.0.6",
"@types/sinon": "^4.1.2",
"@types/storybook__addon-info": "^3.2.1",
"@types/storybook__react": "^3.0.5",
"babel-core": "^6.26.0",
"babel-runtime": "^6.26.0",
"changelog-verify": "^1.1.0",
"codecov": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"jest": "^22.0.4",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-focus-lock": "^1.6.1",
"react-test-renderer": "^16.2.0",
"react-transition-group": "^2.2.1",
"sinon": "^4.1.3",
"styled-components": "^2.4.0",
"ts-jest": "^22.0.0",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"version-changelog": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madou/react-best-modal.git"
},
"bugs": {
"url": "https://github.com/madou/react-best-modal/issues"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"mapCoverage": true,
"testRegex": "__tests__/.*\\.test\\.tsx$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupTestFrameworkScriptFile": "<rootDir>test/setup.js",
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.test.json",
"skipBabel": true
}
}
}
}