-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 868 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 868 Bytes
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
{
"name": "react-document",
"version": "0.7.1",
"description": "Customizable default Document component",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": "aranja/react-document",
"scripts": {
"prepare": "tsc"
},
"dependencies": {
"prop-types": "^15.5.10",
"serialize-javascript": "1.3.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0-beta || ^16.0.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/../../shared/jest-preprocessor"
},
"testRegex": "/(src|test).*(\\.|/)(test|spec)\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"devDependencies": {
"@types/node": "^8.0.20",
"@types/prop-types": "^15.5.1",
"@types/react": "^15.0.21",
"react": "^15.0.0",
"typescript": "^2.2.2"
}
}