-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.33 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.33 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
{
"name": "@dog-ai/github-wrapper",
"description": "A GitHub wrapper library",
"version": "0.0.0",
"engines": {
"node": ">= 6.0.0"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dog-ai/github-wrapper.git"
},
"author": "Hugo Freire <hugo@dog.ai>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/dog-ai/github-wrapper/issues"
},
"homepage": "https://github.com/dog-ai/github-wrapper#readme",
"dependencies": {
"@octokit/rest": "16.28.7",
"lodash": "4.17.23"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"coveralls": "3.1.1",
"eslint": "6.8.0",
"eslint-config-hfreire": "2.0.7",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "26.8.7",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mocha": "11.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-unicorn": "19.0.1",
"jest": "22.4.2",
"npm-merge-driver": "2.3.6",
"pre-git": "3.17.1",
"semantic-release": "17.2.3",
"snyk": "1.1302.1"
},
"config": {
"pre-git": {
"commit-msg": "conventional",
"allow-untracked-files": true
}
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./test/helper.js",
"testMatch": [
"<rootDir>/test/**.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"./test/helper.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"snyk": true,
"scripts": {
"eslint": "node_modules/.bin/eslint --ext .json --ext .js .",
"jest": "./node_modules/.bin/jest",
"snyk:test": "./node_modules/.bin/snyk test",
"snyk:protect": "./node_modules/.bin/snyk protect",
"babel": "mkdir -p lib && ./node_modules/.bin/babel src/ -d lib",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"semantic-release": "./node_modules/.bin/semantic-release",
"clean": "rm -rf lib coverage",
"lint": "npm run eslint",
"prepare": "npm run snyk:protect",
"test": "npm run clean && npm run lint && npm run jest",
"compile": "npm run clean && npm run babel",
"commit": "./node_modules/.bin/commit-wizard",
"prepublish": "npm run compile"
}
}