-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.34 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
{
"name": "try-catch-finally",
"version": "2.0.46",
"description": "A very small library for more flexible error catching in JavaScript.",
"main": "try-catch-finally.js",
"repository": {
"type": "git",
"url": "[email protected]:c24w/try-catch-finally.js.git"
},
"scripts": {
"test": "npm run test-node && npm run test-chrome-headless && AMD=y npm run test-chrome-headless",
"test-node": "istanbul test --report lcovonly -i \"$(./main-path.js)\" _mocha test",
"test-chrome-headless": "karma start --browsers ChromeHeadlessNoSandbox",
"test-browsers": "karma start",
"watch": "karma start --single-run false & _mocha test -w",
"preversion": "npm test && ./minify.sh && git add $(MINIFIED=y ./main-path.js short)",
"build-contents": "doctoc --maxlevel 3 --title '## Contents' readme.md"
},
"author": "Chris Watson",
"license": "ISC",
"readmeFilename": "readme.md",
"devDependencies": {
"almond": "^0.3.2",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"doctoc": "^1.0.0",
"eslint": "^2.8.0",
"istanbul": "^0.4.3",
"karma": "^0.13.22",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "~0.1.0",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.2",
"karma-opera-launcher": "^0.3.0",
"lodash.assign": "^4.0.8",
"mocha": "^2.4.5",
"uglify-js": "*"
}
}