-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 2.78 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
{
"name": "paste-image",
"version": "0.0.3",
"description": "Cross-browser pasting of images",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/redgeoff/paste-image"
},
"keywords": [
"paste",
"image",
"browser"
],
"author": "Geoffrey Cox",
"license": "MIT",
"bugs": {
"url": "https://github.com/redgeoff/paste-image/issues"
},
"scripts": {
"assert-beautified": "beautify-proj -i test -c beautify.json -e bundle.js && beautify-proj -i scripts -c beautify.json",
"beautify": "beautify-proj -i test -o . -c beautify.json -e bundle.js && beautify-proj -i scripts -o . -c beautify.json",
"jshint": "jshint -c .jshintrc *.js test scripts",
"browser-server": "./test/browser/server.js",
"browser-test": "./test/browser/test.js",
"browser-test-firefox": "npm run jshint && CLIENT=selenium:firefox npm run browser-test",
"browser-test-chrome": "npm run jshint && CLIENT=selenium:chrome npm run browser-test",
"browser-test-phantomjs": "npm run jshint && CLIENT=selenium:phantomjs npm run browser-test",
"browser-coverage-build": "browserify -t [ browserify-istanbul --ignore **/node_modules/** ] ./test/index.js -o test/browser-coverage/bundle.js -d",
"browser-coverage-server": "./test/browser-coverage/server.js",
"browser-coverage-test": "./test/browser-coverage/test.js",
"browser-coverage-report": "istanbul report --dir coverage/browser --root coverage/browser lcov",
"browser-coverage-check": "istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100 coverage/browser/coverage.json",
"browser-coverage-full-test": "npm run jshint && npm run browser-coverage-build && npm run browser-coverage-test && npm run browser-coverage-report && npm run browser-coverage-check",
"test": "npm run assert-beautified && npm run browser-coverage-full-test",
"min": "uglifyjs dist/paste-image.js -mc > dist/paste-image.min.js",
"build": "mkdir -p dist && browserify index.js -s pasteImage -o dist/paste-image.js && npm run min",
"build-and-publish": "./bin/publish.sh"
},
"dependencies": {
"events": "^1.1.1",
"inherits": "^2.0.3"
},
"devDependencies": {
"beautify-proj": "0.0.4",
"blob-polyfill": "^1.0.20150320",
"bluebird": "^3.4.6",
"browserify": "^13.1.0",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.12",
"es5-shim": "^4.5.9",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.3",
"mocha": "^3.0.2",
"mocha-phantomjs": "^4.1.0",
"request": "^2.74.0",
"sauce-connect-launcher": "^0.16.0",
"saucelabs": "^1.3.0",
"selenium-standalone": "^5.7.0",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0",
"wd": "^0.4.0"
}
}