-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.96 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
{
"name": "mounty",
"version": "1.5.2",
"description": "A tiny React transition manager with mount/unmount support and a familiar API.",
"source": "lib/index.tsx",
"main": "dist/mounty.js",
"module": "dist/mounty.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "is-ci || husky install",
"build": "microbundle build",
"watch": "microbundle watch --compress false",
"test": "jest",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"keywords": [
"react",
"react transition group",
"react transition",
"toggle",
"animation"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/truework/mounty.git"
},
"author": "estrattonbailey",
"license": "MIT",
"bugs": {
"url": "https://github.com/truework/mounty/issues"
},
"homepage": "https://github.com/truework/mounty#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@semantic-release/git": "^10.0.1",
"@tsconfig/create-react-app": "^1.0.2",
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^25.1.2",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"commitlint": "^16.2.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^25.1.0",
"microbundle": "^0.12.0-next.8",
"prettier": "^2.6.2",
"react": "16",
"react-dom": "16",
"semantic-release": "^19.0.2",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": {
"noErrorTruncation": true,
"noImplicitAny": true,
"strictNullChecks": true,
"jsx": "react"
}
}
}
},
"peerDependencies": {
"react": ">= 16.9"
}
}