forked from sky-uk/api-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.08 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.08 KB
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
128
129
130
131
{
"name": "apiexplorer",
"version": "0.5.0",
"description": "API Explorer (live documentation) for Swagger",
"main": "dist/APIExplorer.umd.js",
"scripts": {
"test-dependencies": "node ../npm-dependency-analyzer/bin/npm-dependency-analyzer | bunyan",
"prestart": "npm run build",
"build": "NODE_ENV=production webpack --config build/webpack.prod.config",
"start": "NODE_ENV=production node server-prod.js",
"dev": "npm run dev:links",
"dev:petstore": "cross-env APIEXPLORER_SAMPLE=petstore nodemon server/server.js",
"dev:links": "cross-env APIEXPLORER_SAMPLE=links nodemon server/server.js",
"dev:helloworld": "cross-env APIEXPLORER_SAMPLE=helloworld nodemon server/server.js",
"dev:basepath": "cross-env APIEXPLORER_SAMPLE=basepath nodemon server/server.js",
"test": "npm-dependency-analyzer | bunyan",
"DISABLEDtest": "npm run lint && cross-env NODE_ENV=test mocha --recursive --compilers js:babel-core/register",
"DISABLEDtest:watch": "npm test -- --watch",
"lint": "standard --verbose | snazzy",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g sky-uk/api-explorer",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:sky-uk/api-explorer gh-pages --force",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"files": [
"dist"
],
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sky-uk/api-explorer.git"
},
"author": "Sky UK Limited",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/sky-uk/api-explorer/issues"
},
"maintainers": [
{
"name": "Carlos Guedes",
"email": "carlos.guedes@sky.uk"
},
{
"name": "Daniel Correia",
"email": "daniel.correia@sky.uk"
}
],
"standard": {
"parser": "babel-eslint",
"globals": [
"APIExplorer",
"fetch",
"describe",
"it"
],
"ignore": [
"dist"
]
},
"dependencies": {
"async": "1.5.0",
"classnames": "2.1.2",
"codemirror": "5.8.0",
"history": "1.12.6",
"immutable": "3.7.5",
"isomorphic-fetch": "2.2.0",
"linq": "3.0.5",
"marked": "0.3.5",
"moment": "2.13.0",
"morgan": "1.6.1",
"react": "0.14.0",
"react-dock": "0.2.3",
"react-dom": "0.14.0",
"react-highlight": "0.9.0",
"react-jsonschema-form": "0.31.0",
"react-redux": "^4.4.6",
"react-redux-toastr": "4.0.3",
"react-router": "1.0.0-rc3",
"recursive-readdir": "2.0.0",
"redux": "^3.6.0",
"redux-router": "1.0.0-beta3",
"redux-thunk": "1.0.0",
"speakingurl": "7.0.0",
"swagger-converter": "1.0.1",
"urijs": "1.18.1",
"whatwg-fetch": "0.10.1"
},
"devDependencies": {
"acorn": "3.1.0",
"babel-core": "^5.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^5.0.0",
"babel-plugin-react-transform": "1.1.0",
"babel-runtime": "5.8.29",
"chai": "3.4.0",
"chai-immutable": "1.4.0",
"cross-env": "1.0.8",
"eslint": "^3.0.0",
"esprima": "2.7.2",
"expect": "1.8.0",
"exports-loader": "0.6.2",
"express": "4.13.3",
"gitbook-cli": "0.3.4",
"highlight.js": "^9.6.0",
"html-webpack-plugin": "1.6.2",
"imports-loader": "0.6.5",
"jsdom": "7.0.2",
"mocha": "2.3.3",
"node-libs-browser": "0.5.2",
"nodemon": "1.8.0",
"npm-dependency-analyzer": "^0.6.3",
"raw-loader": "0.5.1",
"react-addons-test-utils": "0.14.0",
"react-transform-hmr": "1.0.0",
"request": "2.65.0",
"rimraf": "2.3.4",
"snazzy": "2.0.1",
"standard": "^8.6.0",
"style-loader": "0.12.3",
"webpack": "1.13.1",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0"
}
}