-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.07 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@transclusion/vdom",
"version": "1.0.5",
"description": "A tiny JavaScript virtual DOM library for the browser and Node.js.",
"keywords": [
"vdom",
"library",
"javascript",
"dom",
"nodejs"
],
"author": "Marius Lundgård <studio@mariuslundgard.com>",
"homepage": "https://github.com/transclusion/vdom#readme",
"bugs": {
"url": "https://github.com/transclusion/vdom/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transclusion/vdom.git"
},
"license": "MIT",
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"typings": "dist/es/index.d.ts",
"scripts": {
"build": "run-p tsc-*",
"clean": "rimraf dist",
"commit": "git-cz",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"dev": "(cd perf && yarn dev)",
"format": "prettier --write \"{src,perf/src,test}/**/*.{js,ts,tsx}\"",
"lint": "eslint . --ext .js,.jsx,.mjs,.ts,.tsx -- ",
"prebuild": "run-s clean",
"precommit": "run-s build lint test",
"prepublishOnly": "run-s build",
"release": "semantic-release --access public",
"test": "jest --coverage",
"test-watch": "jest --watch",
"tsc-es5": "tsc -p ts/tsconfig-cjs.json",
"tsc-es6": "tsc -p ts/tsconfig-es.json"
},
"devDependencies": {
"@transclusion/semantic-release": "^0.2.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.12.28",
"esbuild-jest": "^0.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"jest": "^27.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}