-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.09 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": "moonhare",
"version": "0.0.0",
"description": "TODO",
"source": "src/index.ts",
"cdn": "dist/moonhare.umd.js",
"main": "dist/moonhare.js",
"types": "dist/types/index.d.ts",
"unpkg": "dist/moonhare.umd.js",
"module": "dist/moonhare.esm.js",
"jsdelivr": "dist/moonhare.umd.js",
"browser": "dist/moonhare.umd.js",
"umd:main": "dist/moonhare.umd.js",
"engines": {
"node": ">=12",
"pnpm": ">=3"
},
"bin": {
"moonhare": "cli/index.js"
},
"scripts": {
"dev": "microbundle watch",
"lint:fix": "pnpm run lint -- --fix",
"tsd": "tsc --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"build": "microbundle",
"test": "jest --coverage",
"test:update": "pnpm run test -- -u",
"format": "prettier --write .",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonharelabs/moonhare.git"
},
"keywords": [],
"author": {
"name": "Kavindu Santhusa"
},
"license": "MIT",
"devDependencies": {
"@types/clean-css": "^4.2.5",
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^16.9.2",
"@types/prettier": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"clean-css": "^5.1.5",
"csstype": "^3.0.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"js-yaml": "^4.1.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"microbundle": "^0.13.3",
"typescript": "^4.4.3"
},
"bugs": {
"url": "https://github.com/moonharelabs/moonhare/issues"
},
"homepage": "https://github.com/moonharelabs/moonhare#readme",
"dependencies": {
"glob": "^7.1.7",
"minimist": "^1.2.5"
}
}