-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
{
"name": "preact-markup",
"amdName": "preactMarkup",
"version": "2.1.1",
"description": "Render HTML/XML using VDOM, with Custom Elements mapped to Components.",
"main": "dist/preact-markup.js",
"module": "dist/preact-markup.module.js",
"umd:main": "dist/preact-markup.umd.js",
"source": "src/index.js",
"scripts": {
"build": "microbundle build --raw",
"test": "npm run -s lint && npm run -s test:karma",
"lint": "eslint {src,test}/*.js",
"test:karma": "karma start --single-run",
"prepublishOnly": "npm-run-all build test",
"release": "npm run -s build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"keywords": [
"preact",
"markup",
"html",
"virtual dom",
"html parser"
],
"author": "Jason Miller <jason@developit.ca>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/developit/preact-markup.git"
},
"bugs": {
"url": "https://github.com/developit/preact-markup/issues"
},
"homepage": "https://github.com/developit/preact-markup",
"types": "src/index.d.ts",
"peerDependencies": {
"preact": ">=10"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chai": "^4.3.0",
"diff": "^4.0.1",
"eslint": "^6.0.1",
"karma": "^6.1.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"microbundle": "^0.11.0",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"preact": "^10.5.12",
"preact-jsx-chai": "^3.0.0",
"rollup": "^1.16.7",
"sinon": "^7.3.2",
"sinon-chai": "^3.5.0",
"webpack": "^4.35.3"
}
}