-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
{
"name": "raven-js",
"description": "JavaScript client for Sentry",
"keywords": [
"debugging",
"errors",
"exceptions",
"logging",
"raven",
"sentry"
],
"version": "3.18.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": {
"lint": "eslint .",
"precommit": "lint-staged",
"publish": "npm run test && grunt publish",
"test": "npm run lint && npm run test:size && grunt build.test && npm run test:unit && npm run test:integration && npm run test:typescript",
"test:unit": "mocha-chrome test/index.html",
"test:integration": "mocha-chrome test/integration/index.html --chrome-flags '[\"--disable-web-security\"]' --ignore-resource-errors --ignore-exceptions",
"test:typescript": "tsc --noEmit --noImplicitAny typescript/raven-tests.ts",
"test:ci": "npm run lint && grunt test:ci",
"test:size": "grunt dist && bundlesize"
},
"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-saucelabs": "^9.0.0",
"grunt-sri": "mattrobenolt/grunt-sri#pretty",
"husky": "^0.14.3",
"lint-staged": "^4.0.4",
"mocha": "^3.5.0",
"mocha-chrome": "^0.2.1",
"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": {
"*.js": [
"prettier --write",
"git add"
]
},
"typings": "typescript/raven.d.ts",
"bundlesize": [
{
"path": "./dist/raven.min.js",
"maxSize": "10 kB"
}
]
}