-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "tokey-root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf -g \"./packages/*/{dist,cjs,esm}\" \"./demos/dist\"",
"build": "tsc --build",
"watch": "npm run build -- -w",
"lint": "eslint",
"pretest": "npm run lint && npm run build",
"test": "mocha \"./packages/*/dist/test/**/*.spec.js\"",
"prettify": "prettier . --write",
"start": "node scripts/dev-server.js"
},
"devDependencies": {
"@ts-tools/node": "^6.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "22",
"@webref/css": "~6.16.1",
"chai": "^4.3.10",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "^11.0.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0"
},
"engines": {
"node": ">=22"
},
"repository": "[email protected]:wixplosives/tokey.git",
"author": "Wix.com",
"license": "MIT"
}