-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 1.89 KB
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
59
60
61
62
63
64
65
66
{
"name": "react-web-share-api",
"version": "0.0.2",
"description": "React high order component that expose the web share api",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"jsnext:main": "dist/react-web-share-api.min.js",
"module": "dist/react-web-share-api.min.js",
"scripts": {
"clean": "rm -rf ./lib && rm -rf ./dist",
"build:lib": "tsc",
"build:dist": "rollup -c",
"build": "npm run build:lib && npm run build:dist",
"lint": "tslint -c ./tslint.json './src/**/*.{ts,tsx}'",
"test": "jest --config jest.json",
"test:watch": "jest --config jest.json --watch",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/marcolanaro/react-web-share-api.git"
},
"bugs": {
"url": "https://github.com/marcolanaro/react-web-share-api/issues"
},
"homepage": "https://github.com/marcolanaro/react-web-share-api",
"keywords": [
"react",
"component",
"share",
"web share",
"high-order",
"typescript"
],
"author": "Marco Lanaro <marcolanaro@gmail.com> (https://github.com/marcolanaro)",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^2.8.0",
"@types/jest": "^19.2.3",
"@types/react": "^15.0.34",
"@types/react-dom": "^15.5.1",
"enzyme": "^2.8.2",
"jest": "^20.0.1",
"pre-commit": "^1.1.3",
"react-test-renderer": "^15.5.0",
"rollup": "^0.42.0",
"rollup-plugin-typescript2": "^0.4.3",
"rollup-plugin-uglify": "^2.0.1",
"source-map-loader": "^0.1.5",
"ts-jest": "^20.0.3",
"ts-loader": "^0.9.5",
"tslint": "^5.2.0",
"tslint-eslint-rules": "^4.0.0",
"tslint-microsoft-contrib": "^4.0.1",
"tslint-react": "^3.0.0",
"typescript": "^2.4.0"
},
"dependencies": {
"react": "^15.5.0",
"react-dom": "^15.5.0"
},
"pre-commit": [
"lint",
"build"
]
}