-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
127 lines (127 loc) · 3.81 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "react-lincoln",
"version": "0.4.1",
"description": "Meet Lincoln, a React component for rendering OpenAPI v3 definitions.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/temando/open-api-renderer.git"
},
"bugs": "https://github.com/temando/open-api-renderer/issues",
"keywords": [
"OpenAPI",
"OpenAPI specification",
"swagger",
"react",
"API"
],
"engines": {
"node": ">=6"
},
"contributors": [
{
"name": "Brendan Abbott",
"email": "brendan@bloodbone.ws"
},
{
"name": "Florie Guibert",
"email": "florie.guibert@temando.com"
},
{
"name": "Khoa Tran",
"email": "khoa.tran@temando.com"
},
{
"name": "nfour",
"email": "novus.nfour@gmail.com"
},
{
"name": "Szabolcs (Szasza) Palmer",
"email": "szasza@szasza.info"
}
],
"main": "./Lincoln.js",
"scripts": {
"build": "npm run build:demo && npm run build:library",
"build:demo": "rimraf docs/demo/* && NODE_ENV=production webpack --config webpack.config.demo.js",
"build:library": "./scripts/build.bash",
"dash": "webpack-dashboard -- yarn start",
"lint": "eslint src test",
"preversion": "npm run lint && npm run build && npm run test",
"release": "cd dist/library && npm publish",
"start": "webpack-dev-server --config ./webpack.config.dev.js",
"test": "jest",
"test:bench": "node -r babel-register test/benchmark/parser.js",
"test:coverage": "jest --coverage",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"webpack:library": "rimraf dist/library/* && NODE_ENV=production webpack --config webpack.config.library.js"
},
"dependencies": {
"classnames": "^2.2.5",
"color": "^2.0.0",
"copy-to-clipboard": "^3.0.6",
"fetch-everywhere": "^1.0.5",
"history": "^4.6.3",
"js-yaml": "^3.8.4",
"json-schema-ref-parser": "^4.0.4",
"jss": "^7.1.7",
"lodash": "^4.17.11",
"markdown-it": "^8.3.1",
"prop-types": "^15.5.8",
"qs": "^6.4.0",
"react-document-title": "^2.0.2",
"react-jss": "^6.1.1",
"react-scrollable-anchor": "^0.5.0"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^22.0.6",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.23.0",
"benchmark": "^2.1.4",
"changelog-verify": "^1.0.4",
"css-loader": "^0.28.4",
"eslint": "^4.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"fast-async": "^6.2.2",
"file-loader": "^0.11.2",
"font-loader": "^0.1.2",
"fs-extra": "^4.0.2",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.0.6",
"json-loader": "^0.5.4",
"react": "^15.5.4",
"react-addons-perf": "^15.4.2",
"react-dev-utils": "^4.2.2",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"style-loader": "^0.19.1",
"transform-runtime": "^0.0.0",
"url-loader": "^0.6.2",
"version-changelog": "^2.1.0",
"webpack": "2",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.0"
}
}