-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "react-twine",
"version": "0.0.2",
"description": "",
"main": "dist/react-twine.cjs.js",
"module": "dist/react-twine.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjamminf/react-twine.git"
},
"author": "Ben Fleming",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjamminf/react-twine/issues"
},
"homepage": "https://github.com/benjamminf/react-twine#readme",
"peerDependencies": {
"react": "^17.0.1"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-jest": "^26.6.3",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"typescript": "^4.1.3"
}
}