-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1012 Bytes
/
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
{
"name": "react-document-attributes",
"version": "0.0.1",
"description": "Hooks for setting attributes on the html and body tags",
"main": "dist/umd/index.js",
"module": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"author": "Jack Moore <jtmthf@mst.edu>",
"license": "MIT",
"scripts": {
"type-check": "tsc",
"build": "run-p build:*",
"build:types": "tsc --emitDeclarationOnly --noEmit false",
"build:bundle": "rollup -c"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/react": "^16.8.14",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"react": "^16.8.6",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.2.3",
"typescript": "^3.4.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}