This repository was archived by the owner on Jun 23, 2020. It is now read-only.
forked from bukalapak/snowboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.14 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.14 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
{
"name": "snowboard",
"version": "3.3.2",
"description": "API blueprint toolkit",
"author": "Alif Rachmawadi <subosito@bukalapak.com>",
"license": "MIT",
"repository": "bukalapak/snowboard",
"main": "lib/snowboard.js",
"bin": "lib/main.js",
"scripts": {
"fmt": "prettier --write README.md 'lib/**/*.js' 'test/**/*.js' 'templates/**/*.{js,svelte}'",
"lint-fmt": "prettier -l README.md 'lib/**/*.js' 'test/**/*.js' 'templates/**/*.{js,svelte}'",
"lint-eslint": "eslint .",
"lint": "run-p lint-fmt lint-eslint",
"examples": "./tools/examples.sh ./test/fixtures/api-blueprint/examples ./examples",
"test": "tape 'test/**/*.js'"
},
"dependencies": {
"axios": "^0.19.0",
"axios-auth-refresh": "^1.0.7",
"axios-oauth-client": "^1.1.1",
"chokidar": "^3.0.1",
"clipboard-copy": "^3.1.0",
"commander": "^2.19.0",
"cors": "^2.8.5",
"cosmiconfig": "^5.2.1",
"express": "^4.16.4",
"express-basic-auth": "^1.2.0",
"handlebars": "^4.1.2",
"lodash": "^4.17.11",
"marked": "^0.7.0",
"mkdirp": "^0.5.1",
"morgan": "^1.9.1",
"ora": "^3.4.0",
"outboard": "^2.9.1",
"parse-duration": "^0.1.1",
"parse-prefer-header": "^1.0.0",
"prismjs": "^1.16.0",
"querystringify": "^2.1.1",
"remark": "^10.0.1",
"rollup": "^1.16.7",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.0",
"rollup-plugin-terser": "^5.1.1",
"speakingurl": "^14.0.1",
"store2": "^2.8.0",
"strip-dirs": "^3.0.0",
"svelte": "^3.6.5",
"table": "^5.2.3",
"tmp": "^0.1.0",
"uritemplate": "^0.3.4",
"url-join": "^4.0.1",
"url-parse": "^1.4.7"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"prettier-plugin-svelte": "^0.6.0",
"tape": "^4.10.1"
},
"keywords": [
"api-blueprint"
],
"pkg": {
"assets": [
"templates"
],
"targets": [
"node8-linux-x64",
"node8-macos-x64"
]
}
}