forked from snabbdom/snabbdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "snabbdom",
"version": "0.7.1",
"description": "A virtual DOM library with focus on simplicity, modularity, powerful features and performance.",
"main": "snabbdom.js",
"module": "es/snabbdom.js",
"typings": "snabbdom.d.ts",
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^14.4.0",
"fake-raf": "1.0.1",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"knuth-shuffle": "^1.0.1",
"testem": "^1.18.1",
"typescript": "^2.4.2",
"xyz": "2.1.0"
},
"scripts": {
"pretest": "npm run compile",
"test": "testem",
"compile": "npm run compile-es && npm run compile-commonjs",
"compile-es": "tsc --outDir es --module es6 --moduleResolution node",
"compile-commonjs": "tsc --outDir ./",
"prepublish": "npm run compile",
"release-major": "xyz --repo [email protected]:paldepind/snabbdom.git --increment major",
"release-minor": "xyz --repo [email protected]:paldepind/snabbdom.git --increment minor",
"release-patch": "xyz --repo [email protected]:paldepind/snabbdom.git --increment patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paldepind/snabbdom.git"
},
"keywords": [
"virtual",
"dom",
"light",
"kiss",
"performance"
],
"author": "Simon Friis Vindum",
"license": "MIT",
"bugs": {
"url": "https://github.com/paldepind/snabbdom/issues"
},
"homepage": "https://github.com/paldepind/snabbdom#readme"
}