forked from codefresh-io/node-docker-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.31 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
{
"name": "@codefresh-io/docker-reference",
"version": "0.0.11",
"description": "A node.js package to parse docker image reference",
"main": "index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/codefresh-io/node-docker-reference",
"author": "Roy Shmueli <[email protected]>",
"license": "MIT",
"scripts": {
"test": "mocha tests/**/*.spec.js",
"test:coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/**/*.spec.js",
"lint": "eslint --rule 'no-trailing-spaces: [\"warn\", { \"skipBlankLines\": false }]' \"./src/**/*.js\"",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"depcheck": "depcheck --ignores='rimraf,@types/*'",
"clean": "rimraf ./coverage",
"build:ts-definitions": "tsc",
"publish": "publish"
},
"devDependencies": {
"@types/node": "^16.11.12",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"depcheck": "^0.6.7",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-react": "^7.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"publish": "^0.6.0",
"rimraf": "^2.6.1",
"typescript": "^4.5.3"
},
"dependencies": {
"re2": "^1.16.0"
}
}