-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.28 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
{
"name": "preact-parser",
"version": "1.3.7",
"repository": "[email protected]:jahilldev/preact-parser.git",
"author": "James Hill <[email protected]>",
"license": "MIT",
"private": false,
"main": "./dist/index.es5.js",
"types": "./dist/index.d.ts",
"keywords": [
"preact",
"parser",
"dangerouslySetInnerHTML",
"no danger",
"render",
"html",
"string",
"jsx",
"isomorphic"
],
"engines": {
"node": "^16"
},
"files": [
"dist"
],
"scripts": {
"start": "run-s clean watch",
"build": "webpack --mode=production",
"watch": "webpack --watch",
"clean": "rimraf ./dist",
"test": "jest"
},
"devDependencies": {
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.24",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^3.1.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"preact": "^10.5.13",
"preact-markup": "^2.1.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"peerDependencies": {
"preact": ">=10"
}
}