-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
86 lines (86 loc) · 1.96 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-simple-image",
"version": "1.0.0",
"description": "responsive <img> tag with cleaner srcset/sizes interface.",
"main": "lib/Image.js",
"types": "lib/Image.d.ts",
"scripts": {
"build": "tsc",
"test": "NODE_ENV=test mocha",
"test:coverage": "NODE_ENV=test nyc mocha",
"coveralls": "NODE_ENV=test nyc report --reporter=text-lcov | $(npm bin)/coveralls",
"prepublish": "npm run build",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --fix --project tsconfig.json"
},
"engines": {
"node": ">= 6"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bitjourney/react-simple-image.git"
},
"keywords": [
"HTML5"
],
"author": "Bit Journey, Inc. (https://bitjourney.com/)",
"contributors": [
"gfx",
"kenju"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bitjourney/react-simple-image/issues"
},
"homepage": "https://github.com/bitjourney/react-simple-image#readme",
"devDependencies": {
"@types/mocha": ">= 2.2.41",
"@types/node": ">= 6.0.18",
"@types/power-assert": ">= 1.4.29",
"@types/react": ">= 16",
"@types/react-dom": ">= 16",
"coveralls": "^2.11.15",
"mocha": ">= 3.2.0",
"nyc": ">= 10.0.0",
"power-assert": ">= 1.4.2",
"react": ">= 16",
"react-dom": ">= 16",
"source-map-support": ">= 0.4.15",
"ts-node": ">= 3.0.4",
"tslint": ">= 5.7.0",
"tslint-react": ">= 3.2.0",
"typescript": ">= 2.3.2"
},
"peerDependencies": {
"prop-types": ">= 15",
"react": ">= 15",
"react-dom": ">= 15"
},
"nyc": {
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"include": [
"src/**/*.{ts,tsx}"
],
"exclude": [
"lib/**/*",
"spec/**/*"
],
"require": [
"ts-node/register"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text"
]
}
}