-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.15 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
{
"name": "@adarovsky/vlayout",
"version": "1.7.6",
"description": "A port of simple reactive layout engine running in browsers",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "[email protected]:adarovsky/vlayout.git"
},
"author": "Alexander Darovsky",
"license": "ISC",
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test --passWithNoTests",
"updateSnapshots": "dts test --passWithNoTests --updateSnapshot ",
"lint": "dts lint",
"prepare": "dts build",
"bump": "npm version patch && npm publish",
"prepublishOnly": "dts test",
"coveralls": "dts test --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"dependencies": {
"@seznam/compose-react-refs": "^1.0.5",
"@tippyjs/react": "^4.2.3",
"caching-map": "^1.0.2",
"clsx": "^1.1.1",
"lodash": "^4.17.20",
"lodash-es": "^4.17.20",
"react-tooltip": "^4.2.15",
"ts-invariant": "^0.6.1",
"uuid": "^8.3.2"
},
"peerDependencies": {
"react": ">=16",
"rxjs": ">=6"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5"
},
"module": "dist/vlayout.esm.js",
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@types/enzyme": "^3.10.11",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.15",
"@types/sinon": "^10.0.6",
"@types/uuid": "^8.3.4",
"coveralls": "^3.0.9",
"dts-cli": "^1.2.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.1",
"husky": "^4.3.8",
"jest": "^27.4.7",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-app-polyfill": "^1.0.6",
"react-dom": "^17.0.2",
"rollup-plugin-postcss": "^3.1.8",
"sinon": "^7.5.0",
"ts-jest": "^27.1.3",
"tslib": "^1.14.1",
"typescript": "^4.5.4"
}
}