-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "@reach/observe-rect",
"version": "1.2.0",
"description": "Observe the Rect of a DOM element.",
"repository": {
"type": "git",
"url": "git+https://github.com/reach/observe-rect",
"directory": "packages/auto-id"
},
"scripts": {
"build": "cross-env NODE_ENV=production tsdx build --format=cjs,esm,umd",
"start": "cross-env NODE_ENV=development tsdx watch",
"test": "cross-env NODE_ENV=test tsdx test",
"serve": "serve"
},
"files": [
"dist",
"README.md"
],
"main": "dist/index.js",
"umd:main": "dist/observe-rect.umd.production.js",
"module": "dist/observe-rect.esm.js",
"typings": "dist/index.d.ts",
"author": "React Training <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.3.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.16.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"serve": "^11.3.2",
"tsdx": "^0.12.1",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"semi": true,
"trailingComma": "es5",
"useTabs": true
}
}