-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 869 Bytes
/
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
{
"name": "crc64-ecma182",
"version": "1.0.0",
"description": "Implement of CRC64-ECMA182 for Node.js",
"main": "crc64_ecma182.js",
"scripts": {
"test": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/souche-koumakan/crc64.js.git"
},
"keywords": [
"crc64-ecma182",
"crc64"
],
"author": "XadillaX <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/souche-koumakan/crc64_ecma182/issues"
},
"homepage": "https://github.com/souche-koumakan/crc64_ecma182#readme",
"dependencies": {
"nan": "^2.7.0"
},
"devDependencies": {
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"should": "^12.0.0"
}
}