forked from goblindegook/littlefoot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.96 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "littlefoot",
"description": "Footnotes without the footprint.",
"version": "4.1.2",
"sideEffects": false,
"license": "MIT",
"repository": "goblindegook/littlefoot",
"scripts": {
"clean": "rm -rf coverage dist",
"build:scripts": "rollup --config --bundleConfigAsCjs",
"build:styles": "postcss src/littlefoot.css --output dist/littlefoot.css",
"build:types": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"build": "npm run clean && mkdir -p dist && concurrently 'npm run build:types' 'npm run build:scripts' 'npm run build:styles'",
"commit": "git-cz",
"watch:scripts": "rollup --config --bundleConfigAsCjs --watch",
"watch:styles": "npm run build:styles --watch",
"watch:vitest": "vitest",
"watch": "concurrently 'npm run watch:scripts' 'npm run watch:styles'",
"format": "biome check --write .",
"lint": "biome lint .",
"pretest": "npm run lint",
"test": "concurrently 'npm run test:vitest' 'npm run test:cypress'",
"test:coverage": "concurrently 'npm run test:vitest --coverage' 'npm run test:cypress'",
"test:cypress": "npm run build && cypress run",
"test:cypress:open": "npm run build && cypress open",
"test:vitest": "vitest run",
"release": "standard-version",
"prepare": "npm run build"
},
"lint-staged": {
"{src,test}/**/*.{js,json,ts}": [
"biome check --write ."
]
},
"author": {
"name": "Luís Rodrigues",
"email": "[email protected]",
"url": "https://goblindegook.com/"
},
"browser": "dist/littlefoot.js",
"main": "dist/littlefoot.cjs.js",
"module": "dist/littlefoot.mjs",
"typings": "dist/littlefoot.d.ts",
"style": "dist/littlefoot.css",
"browserslist": [
"defaults"
],
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@rollup/plugin-commonjs": "28.0.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "12.1.0",
"@testing-library/cypress": "10.0.2",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "^6.4.6",
"@vitest/coverage-v8": "^2.0.0",
"axe-core": "4.10.0",
"concurrently": "9.0.1",
"cssnano": "7.0.6",
"cypress": "13.15.0",
"cypress-axe": "1.5.0",
"cz-conventional-changelog": "3.3.0",
"git-cz": "^4.9.0",
"husky": "9.1.6",
"jsdom": "^25.0.0",
"lint-staged": "15.2.10",
"pixrem": "5.0.0",
"postcss": "8.4.47",
"postcss-cli": "11.0.0",
"postcss-preset-env": "10.0.7",
"rollup": "4.22.4",
"standard-version": "9.5.0",
"tslib": "2.7.0",
"typescript": "5.6.3",
"vitest": "^2.0.0"
},
"dependencies": {
"@pacote/get-style": "2.0.3",
"@pacote/pixels": "2.0.3",
"@pacote/throttle": "2.0.3"
},
"resolutions": {
"cypress": "13.15.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}