forked from getsentry/sentry-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.87 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "raven-js",
"description": "JavaScript client for Sentry",
"keywords": [
"debugging",
"errors",
"exceptions",
"logging",
"raven",
"sentry"
],
"version": "3.19.1",
"repository": "git://github.com/getsentry/raven-js.git",
"license": "BSD-2-Clause",
"homepage": "https://github.com/getsentry/raven-js",
"main": "src/singleton.js",
"scripts": {
"deploy": "./scripts/deploy.js",
"lint": "eslint .",
"precommit": "lint-staged",
"publish": "npm run test && grunt publish",
"test": "npm run lint && grunt build.test && npm run test:unit && npm run test:integration && npm run test:typescript",
"test:karma:unit": "karma start karma.unit.config.js",
"test:karma:integration": "karma start karma.integration.config.js ",
"test:karma:sauce": "karma start karma.sauce.config.js ",
"test:unit": "npm run test:karma:unit -- --single-run",
"test:integration": "npm run test:karma:integration -- --single-run",
"test:typescript": "tsc --noEmit --noImplicitAny typescript/raven-tests.ts",
"test:ci": "npm run lint && grunt test:ci && npm run test:karma:sauce",
"test:size": "grunt dist && bundlesize && git checkout -- dist/"
},
"devDependencies": {
"bluebird": "^3.4.1",
"browserify-versionify": "^1.0.6",
"bundle-collapser": "^1.2.1",
"bundlesize": "^0.15.2",
"chai": "^4.1.1",
"derequire": "2.0.3",
"es6-promise": "^4.0.5",
"eslint": "^4.6.1",
"eslint-config-prettier": "^2.3.0",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-connect": "^0.11.2",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-uglify": "^0.11.0",
"grunt-gitinfo": "^0.1.7",
"grunt-release": "^0.13.0",
"grunt-s3": "0.2.0-alpha.3",
"grunt-sri": "mattrobenolt/grunt-sri#pretty",
"husky": "^0.14.3",
"inquirer": "^3.3.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-failed-reporter": "0.0.3",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-sauce-launcher": "^1.2.0",
"karma-sinon": "^1.0.5",
"lint-staged": "^4.0.4",
"mocha": "^3.5.0",
"prettier": "^1.6.1",
"proxyquireify": "^3.0.2",
"sinon": "^3.2.1",
"through2": "^2.0.0",
"typescript": "^1.8.10",
"whatwg-fetch": "^2.0.3"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 90
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
],
"test/**/*.js": [
"prettier --write",
"git add"
],
"plugins/**/*.js": [
"prettier --write",
"git add"
]
},
"typings": "typescript/raven.d.ts",
"bundlesize": [
{
"path": "./dist/raven.min.js",
"maxSize": "10 kB"
}
]
}