1 | {
|
2 | "name": "incremental-dom",
|
3 | "version": "0.7.0",
|
4 | "description": "An in-place virtual DOM library",
|
5 | "main": "dist/incremental-dom-cjs.js",
|
6 | "author": "The Incremental DOM Authors",
|
7 | "license": "Apache-2.0",
|
8 | "repository": {
|
9 | "type": "git",
|
10 | "url": "https://github.com/google/incremental-dom.git"
|
11 | },
|
12 | "files": [
|
13 | "index.ts",
|
14 | "src",
|
15 | "dist"
|
16 | ],
|
17 | "scripts": {
|
18 | "test": "bazel test test:unit_tests",
|
19 | "build": "bazel build :dev",
|
20 | "dist": "npm run lint && npm run test && bazel build :npm",
|
21 | "update": "npm-check -u",
|
22 | "lint": "eslint src/**.ts"
|
23 | },
|
24 | "devDependencies": {
|
25 | "@bazel/bazel": "^0.27.0",
|
26 | "@bazel/ibazel": "^0.10.3",
|
27 | "@bazel/karma": "^0.33.0",
|
28 | "@bazel/typescript": "^0.33.0",
|
29 | "@types/mocha": "^5.0.0",
|
30 | "@types/sinon": "^4.3.0",
|
31 | "@types/sinon-chai": "^2.7.29",
|
32 | "@typescript-eslint/eslint-plugin": "^1.12.0",
|
33 | "@typescript-eslint/parser": "^1.12.0",
|
34 | "chai": "^4.0.2",
|
35 | "eslint": "^6.0.1",
|
36 | "eslint-config-prettier": "^6.0.0",
|
37 | "eslint-plugin-prettier": "^3.1.0",
|
38 | "karma": "^4.1.0",
|
39 | "karma-chrome-launcher": "^2.2.0",
|
40 | "karma-firefox-launcher": "^1.1.0",
|
41 | "mocha": "^6.1.4",
|
42 | "npm-check": "^5.6.0",
|
43 | "prettier": "^1.18.2",
|
44 | "sinon": "^4.0.0",
|
45 | "sinon-chai": "^2.9.0",
|
46 | "typescript": "~3.4.1",
|
47 | "uglify-js": "^3.6.0"
|
48 | },
|
49 | "dependencies": {}
|
50 | }
|