UNPKG

1.93 kBJSONView Raw
1{
2 "name": "snabbdom",
3 "version": "0.7.4",
4 "description": "A virtual DOM library with focus on simplicity, modularity, powerful features and performance.",
5 "main": "snabbdom.js",
6 "module": "es/snabbdom.js",
7 "typings": "snabbdom.d.ts",
8 "directories": {
9 "example": "examples",
10 "test": "test"
11 },
12 "devDependencies": {
13 "benchmark": "^2.1.4",
14 "browserify": "^14.4.0",
15 "fake-raf": "1.0.1",
16 "gulp": "^3.9.1",
17 "gulp-clean": "^0.3.2",
18 "gulp-rename": "^1.2.2",
19 "gulp-sourcemaps": "^2.6.0",
20 "gulp-uglify": "^3.0.0",
21 "husky": "^3.0.5",
22 "karma": "^3.0.0",
23 "karma-browserstack-launcher": "^1.3.0",
24 "karma-chrome-launcher": "^2.2.0",
25 "karma-firefox-launcher": "^1.2.0",
26 "karma-mocha": "^1.3.0",
27 "karma-typescript": "^3.0.13",
28 "knuth-shuffle": "^1.0.1",
29 "mocha": "^5.2.0",
30 "typescript": "^3.0.3",
31 "xyz": "2.1.0"
32 },
33 "scripts": {
34 "pretest": "npm run compile",
35 "test": "karma start",
36 "compile": "npm run compile-es && npm run compile-commonjs",
37 "compile-es": "tsc --outDir es --module es6 --moduleResolution node",
38 "compile-commonjs": "tsc --outDir ./",
39 "prepublish": "npm run compile",
40 "release-major": "xyz --repo git@github.com:paldepind/snabbdom.git --increment major",
41 "release-minor": "xyz --repo git@github.com:paldepind/snabbdom.git --increment minor",
42 "release-patch": "xyz --repo git@github.com:paldepind/snabbdom.git --increment patch"
43 },
44 "repository": {
45 "type": "git",
46 "url": "git+https://github.com/paldepind/snabbdom.git"
47 },
48 "keywords": [
49 "virtual",
50 "dom",
51 "light",
52 "kiss",
53 "performance"
54 ],
55 "author": "Simon Friis Vindum",
56 "license": "MIT",
57 "bugs": {
58 "url": "https://github.com/paldepind/snabbdom/issues"
59 },
60 "homepage": "https://github.com/paldepind/snabbdom#readme",
61 "husky": {
62 "hooks": {
63 "pre-commit": "npm test"
64 }
65 }
66}