-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1 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
{
"name": "html-to-react-events",
"version": "0.3.0",
"description": "Convert HTML event names to React event handler names.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "jest"
},
"keywords": [
"html",
"event",
"react"
],
"author": "Robin Franken",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Robinfr/html-to-react-events.git"
},
"license": "SEE LICENSE",
"homepage": "https://github.com/Robinfr/html-to-react-events",
"bugs": {
"url": "https://github.com/Robinfr/html-to-react-events/issues"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.3"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}