-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "sentry-files",
"version": "1.0.1",
"description": "Node library to upload sourcemaps files to Sentry",
"main": "src/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jzabala/sentry-files.git"
},
"keywords": [
"nodejs",
"sentry",
"sourcemaps"
],
"author": "Johnny Zabala <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jzabala/sentry-files/issues"
},
"homepage": "https://github.com/jzabala/sentry-files#readme",
"devDependencies": {
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "1.0.0-rc.13",
"jest": "^23.3.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/examples"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}