-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 776 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 776 Bytes
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
{
"name": "@omarish/react-use-workflow",
"version": "1.0.0",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist/*",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha --ui qunit",
"testall": "mocha --ui qunit dist/test",
"prepack": "npm run clean && npm run build",
"prepare": "install-peers"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"install-peers-cli": "^2.2.0",
"mocha": "^8.2.0",
"shx": "^0.3.3",
"typescript": "^4.0.5"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"clsx": "^1.1.1",
"timm": "^1.7.1"
}
}