-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 922 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
38
39
40
41
42
43
{
"name": "typsy",
"version": "1.0.0-beta.2",
"description": "",
"keywords": [],
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/tamb/typsy"
},
"homepage": "",
"main": "dist/index",
"unpkg": "dist/index",
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"build": "npm test && rollup -c rollup.config.js"
},
"files": [
"dist"
],
"author": "tamb",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.13.15",
"gh-pages": "^2.2.0",
"husky": "^3.0.5",
"jest": "^26.6.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rimraf": "^2.6.3",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-strip-code": "^0.2.7",
"rollup-plugin-terser": "^7.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}