-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
55
56
57
58
{
"name": "moorage",
"version": "1.1.1",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"url": "https://github.com/michal-wrzosek/moorage",
"type": "git"
},
"homepage": "https://michal-wrzosek.github.io/moorage",
"license": "MIT",
"types": "dist/index.d.ts",
"devDependencies": {
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^9.1.0",
"@types/jest": "^24.0.17",
"@types/react": "^16.8.25",
"@types/react-dom": "^16.8.5",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"concurrently": "^4.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"jest": "24.7.1",
"jest-dom": "^4.0.0",
"prepend-file": "^1.3.1",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rollup": "^1.19.4",
"rollup-plugin-typescript2": "^0.22.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"install-all": "npm i && cd example && npm i",
"start-example": "cd example && npm start",
"deploy-example": "cd example && npm run deploy",
"dev": "concurrently --kill-others \"npm run build-watch\" \"npm run start-example\"",
"test:lint": "eslint ./src/**/*.ts ./src/**/*.tsx",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test": "npm run test:lint && npm run test:unit"
},
"files": [
"dist"
]
}