-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 953 Bytes
/
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
{
"name": "afournier-oc-modal",
"version": "1.0.4",
"description": "A modal component used to complete the Open Classroom's project 14",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"dist/*.css"
],
"scripts": {
"build": "rm -rf dist/ && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"build:esm": "tsc"
},
"author": "Alexis Fournier",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"jest": "^27.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "17.0.2"
}
}