-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 833 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
{
"name": "react-commento",
"version": "1.0.0",
"description": "React component for commento comments",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc -p .",
"release": "np",
"prepare": "npm run build",
"test": "echo 'test'"
},
"keywords": [
"comments",
"commento",
"react"
],
"author": "tgandrews",
"repository": "tgandrews/react-commento",
"license": "MIT",
"dependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@types/react": "^16.9.34",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"np": "^6.2.3",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"prettier --write"
]
}
}