-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-iiif-image",
"version": "1.0.1",
"description": "A React component for displaying an IIIF image.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tomkr/react-iiif-image.git"
},
"scripts": {
"build": "babel src/iiif_image.jsx --out-file lib/iiif_image.js",
"lint": "eslint **/*.jsx",
"test": "mocha --compilers jsx:babel-core/register"
},
"babel": {
"presets": [
"react"
]
},
"eslintConfig": {
"rules": {
"indent": [
2,
2
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"react/jsx-uses-react": 1
},
"env": {
"node": true,
"mocha": true,
"browser": true
},
"extends": "eslint:recommended",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
},
"plugins": [
"react"
]
},
"keywords": [
"IIIF",
"react",
"react-component"
],
"author": "Tom Kruijsen",
"license": "MIT",
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.1.18",
"babel-core": "^6.1.21",
"babel-preset-react": "^6.1.18",
"chai": "^3.4.1",
"eslint": "^1.9.0",
"eslint-plugin-react": "^3.8.0",
"mocha": "^2.3.3",
"react": "^0.14.2",
"react-addons-test-utils": "^0.14.2"
}
}