-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.12 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
{
"name": "adler32-umd",
"version": "0.1.0-alpha",
"description":
"A pure-JavaScript Adler-32 checksum implementation with UMD support.",
"keywords": [
"adler", "adler-32", "adler32", "checksum", "hash"
],
"homepage": "https://github.com/hajimes/adler32-umd",
"bugs": "https://github.com/hajimes/adler32-umd/issues",
"license": "MIT",
"author": "Hajime Senuma <[email protected]>",
"repository": {
"type" : "git",
"url" : "git://github.com/hajimes/adler32-umd.git"
},
"scripts": {
"test": "grunt test",
"test-coveralls": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"devDependencies": {
"coveralls": "2.10.1",
"grunt": "0.4.5",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-uglify": "0.5.0",
"grunt-include-replace": "2.0.0",
"grunt-shell": "0.7.0",
"istanbul": "0.2.13",
"mocha": "1.20.1",
"should": "4.0.4"
},
"main": "./main.js",
"private": true
}