-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "incremental-dom",
"version": "0.7.0",
"description": "An in-place virtual DOM library",
"exports": "dist/incremental-dom-esm.js",
"main": "dist/incremental-dom-cjs.js",
"author": "The Incremental DOM Authors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/google/incremental-dom.git"
},
"files": [
"index.ts",
"src",
"dist"
],
"scripts": {
"test": "bazelisk test test:unit_tests",
"build": "bazelisk build :dev",
"dist": "npm run lint && npm run test && bazelisk build :npm",
"publish": "npm run dist && bazelisk run :npm.publish",
"update": "npm-check -u",
"lint": "eslint src/**.ts"
},
"devDependencies": {
"@bazel/bazelisk": "^1.11.0",
"@bazel/concatjs": "^4.6.0",
"@bazel/ibazel": "^0.15.10",
"@bazel/rollup": "^4.6.0",
"@bazel/typescript": "^4.6.0",
"@rollup/plugin-buble": "^0.21.3",
"@types/mocha": "^5.0.0",
"@types/sinon": "^4.3.0",
"@types/sinon-chai": "^2.7.29",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"chai": "^4.0.2",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^4.0.1",
"karma-requirejs": "^1.1.0",
"karma-sourcemap-loader": "^0.3.8",
"mocha": "^6.1.4",
"npm-check": "^5.6.0",
"prettier": "^1.18.2",
"requirejs": "^2.3.6",
"rollup": "^2.63.0",
"sinon": "^4.0.0",
"sinon-chai": "^2.9.0",
"typescript": "~3.4.1",
"uglify-js": "^3.6.0"
}
}