-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "snabbdom-edge",
"version": "1.2.2",
"description": "The I/O for snabbdom (write HTML on server and read DOM on client).",
"main": "snabbdom-edge.js",
"typings": "snabbdom-edge.d.ts",
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"html-entities": "^1.2.0"
},
"peerDependencies": {
"snabbdom": "^1"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-plugin-module-resolver": "^4.0.0",
"babelify": "^10.0.0",
"benchmark": "^1.0.0",
"browserify": "^13.0.0",
"fake-raf": "0.0.1",
"knuth-shuffle": "^1.0.1",
"snabbdom": "^1.0.1",
"testem": "^3.2.0",
"typescript": "^2.1.0",
"xyz": "^4.0.0"
},
"scripts": {
"pretest": "npm run compile",
"test": "if [ -z \"$TRAVIS_NODE_VERSION\" ]; then testem; else testem ci; fi",
"compile": "tsc",
"prepublish": "npm run compile",
"release-major": "xyz --repo git@github.com:katyo/snabbdom-edge.git --increment major",
"release-minor": "xyz --repo git@github.com:katyo/snabbdom-edge.git --increment minor",
"release-patch": "xyz --repo git@github.com:katyo/snabbdom-edge.git --increment patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katyo/snabbdom-edge.git"
},
"keywords": [
"snabbdom",
"virtual-dom",
"html",
"dom",
"client",
"server"
],
"author": "K. <kayo@illumium.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/katyo/snabbdom-edge/issues"
},
"homepage": "https://github.com/katyo/snabbdom-edge#readme"
}