forked from imgix/react-imgix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "react-imgix",
"version": "6.0.2",
"description": "React Component for displaying an image from Imgix",
"main": "lib/index.js",
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib",
"build:watch": "babel src --out-dir lib --watch",
"prepublish": "npm run build",
"test": "npm run pretty && mocha --require babel-core/register --recursive src/*.test.js",
"pretty": "./node_modules/.bin/prettier --single-quote --trailing-comma es5 --print-width 120 --write \"src/**/*.js\"",
"test:watch": "mocha --require babel-core/register --recursive src/*.test.js --watch --reporter min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imgix/react-imgix.git"
},
"keywords": [
"react"
],
"author": "Frederick Fogerty",
"license": "ISC",
"bugs": {
"url": "https://github.com/imgix/react-imgix/issues"
},
"homepage": "https://github.com/imgix/react-imgix#readme",
"peerDependencies": {
"prop-types": ">=15.5.6",
"react": ">=15",
"react-dom": ">=15"
},
"dependencies": {
"jsuri": "^1.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"expect": "^1.20.2",
"expect-jsx": "^3.0.0",
"mocha": "^3.4.2",
"mocha-babel": "^3.0.3",
"prettier": "^1.5.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"sinon": "^2.4.1",
"skin-deep": "^1.1.0"
}
}