-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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": "@rocicorp/undo",
"version": "0.2.1",
"description": "Undo Redo Manager",
"homepage": "https://github.com/rocicorp/undo",
"repository": "github:rocicorp/undo",
"scripts": {
"test": "mocha --ui=bdd out/*.test.js",
"pretest": "npm run build",
"format": "prettier --write 'src/**/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{cjs,js,jsx,json,ts,tsx,html,css,md}'",
"check-format": "prettier --check 'src/**/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{cjs,js,jsx,json,ts,tsx,html,css,md}'",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"build": "rm -rf out && tsc",
"prepack": "npm run lint && npm run test "
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"chai": "^4.3.6",
"eslint": "^8.11.0",
"mocha": "^9.2.2",
"prettier": "^2.5.1",
"sinon": "^13.0.1",
"typescript": "^4.6.2"
},
"type": "module",
"types": "out/index.d.ts",
"main": "out/index.js",
"exports": {
".": "./out/index.js"
},
"files": [
"out/*",
"!out/*.test.*"
]
}