-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.44 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
59
60
61
62
63
64
{
"name": "reimgix",
"version": "1.0.2",
"description": "React utils to imgix",
"author": "Renato Ribeiro (http://github.com/renatorib)",
"license": "MIT",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "src/index.ts",
"typings": "dist/src/index.d.ts",
"scripts": {
"dev": "libundler watch --ts",
"build": "libundler build --ts --c --sm",
"clean": "rimraf lib dist es",
"lint": "eslint src",
"prerelease": "npm run lint && npm run build",
"release": "yarn np"
},
"repository": {
"type": "git",
"url": "https://github.com/renatorib/reimgix.git"
},
"files": [
"dist",
"lib",
"src",
"es",
"logo.png"
],
"keywords": [
"react",
"reactjs",
"components",
"react-component",
"imgix",
"lqip",
"render-props",
"renderless-component"
],
"bugs": {
"url": "https://github.com/renatorib/reimgix/issues"
},
"homepage": "https://github.com/renatorib/reimgix",
"dependencies": {
"query-string": "^6.1.0"
},
"peerDependencies": {
"react": "^16.4.0"
},
"devDependencies": {
"@types/query-string": "^5.1.0",
"@types/react": "^16.3.17",
"cross-env": "^5.1.6",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"libundler": "^1.7.1",
"np": "^3.0.4",
"react": "^16.4.0",
"rimraf": "^2.6.1",
"typescript": "^2.9.2"
}
}