-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "@muban/template",
"version": "1.0.0-alpha.4",
"description": "Writing templates for Muban components during development",
"keywords": [
"muban",
"component",
"template"
],
"repository": "[email protected]:mubanjs/muban-template.git",
"author": "Arjan van Wijk <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "npm-run-all -s clean build:*",
"build:ts-cjs": "tsc -p ./tsconfig.build.cjs.json",
"build:ts-esm": "tsc -p ./tsconfig.build.esm.json",
"clean": "npm-run-all clean:*",
"clean:test": "shx rm -rf coverage .nyc_output",
"clean:npm": "shx rm -rf dist",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"test": "jest ./src/",
"check-types": "tsc --project tsconfig.json --noEmit --noUnusedLocals",
"prepublishOnly": "npm run build"
},
"dependencies": {
"htm": "^3.1.0",
"vhtml": "^2.2.0"
},
"devDependencies": {
"@muban/eslint-config": "^1.0.0-alpha.5",
"@types/jest": "^26.0.15",
"jest": "^26.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"shx": "^0.3.3",
"ts-jest": "^26.2.0",
"typescript": "^4.1.3"
}
}