-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "@24hr/react-hooks",
"version": "1.2.2",
"description": "react hooks",
"main": "dist-cjs/index.js",
"files": [
"dist-es",
"dist-cjs",
"package.json"
],
"repository": "https://github.com/24hr-malmo/react-hooks",
"module": "dist-es/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:es": "babel src --out-dir dist-es",
"build:cjs": "CJS=true babel src --out-dir dist-cjs",
"build": "npm run build:es && npm run build:cjs",
"watch": "babel src --out-dir dist-es --watch"
},
"author": "Tina Håkansson <[email protected]>, Marcus Thelin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-preset-minify": "^0.5.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"dependencies": {
"core-js": "^3.6.5",
"regenerator-runtime": "^0.13.7"
},
"sideEffects": false
}