-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 KB
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
{
"name": "joro",
"version": "1.0.5",
"description": "confirm tags are mounted in the dom",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/.bin/tsc",
"demo:sync": "npm run build; cp dist/* demo",
"demo": "serve ./demo",
"lint": "eslint \"src/**/*.{tsx,ts}\"",
"lint:fix": "eslint \"src/**/*.{tsx,ts}\" --fix",
"spellcheck": "cspell \"**\"",
"test": "uvu -r tsm -r window tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stagfoo/joro.git"
},
"keywords": [
"strings",
"css",
"jss",
"simple",
"tiny",
"frontend"
],
"author": "stagfoo",
"license": "ISC",
"pre-commit": [
"spellcheck",
"lint:fix"
],
"bugs": {
"url": "https://github.com/stagfoo/joro/issues"
},
"homepage": "https://github.com/stagfoo/joro#readme",
"devDependencies": {
"@cspell/dict-css": "^2.0.0",
"@types/node": "^14.0.19",
"@types/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"cspell": "^6.31.1",
"eslint": "^8.9.0",
"eslint-config-xo": "^0.40.0",
"eslint-config-xo-space": "^0.32.0",
"pre-commit": "^1.2.2",
"serve": "^14.2.0",
"tsm": "^2.2.1",
"typescript": "^4.5.5",
"uvu": "^0.5.3",
"window": "^4.2.7"
}
}