-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "remark-gitlab-artifact",
"version": "0.1.2",
"description": "Downloads artifacts from Gitlab projects to live alongside your Markdown.",
"license": "MIT",
"keywords": [
"gitlab",
"gitlab-ci",
"artifacts",
"remark"
],
"repository": {
"type": "git",
"url": "git@github.com:temando/remark-gitlab-artifact.git"
},
"engines": {
"node": ">=6.10"
},
"dependencies": {
"bluebird": "^3.5.0",
"isomorphic-fetch": "^2.2.1",
"unist-util-visit": "^1.1.3",
"unzipper": "^0.8.9"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-preset-env": "^1.6.0",
"eslint": "^4.4.0",
"eslint-config-airbnb-base": "^11.3.0",
"eslint-plugin-import": "^2.7.0",
"fetch-mock": "^5.12.2",
"jest": "^20.0.4",
"remark-parse": "^4.0.0",
"remark-stringify": "^4.0.0",
"to-vfile": "^2.1.2",
"unified": "^6.1.5",
"vfile": "^2.2.0"
},
"scripts": {
"build": "rm -Rf dist && $(npm bin)/babel src --out-dir dist --source-maps inline",
"lint": "$(npm bin)/eslint src",
"teardown": "rm -rf test/runtime/*",
"test": "npm run teardown && $(npm bin)/jest",
"test:coverage": "npm run teardown && $(npm bin)/jest --coverage --coverageReporters text text-summary",
"preversion": "npm run build && npm run lint && npm run test"
},
"main": "dist/index.js",
"files": [
"dist"
]
}