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
|
{
"name": "sumchecker",
"version": "2.0.2",
"author": "Mark Lee",
"license": "Apache-2.0",
"description": "Checksum validator",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/malept/sumchecker.git"
},
"keywords": [
"checksum",
"hash"
],
"bugs": {
"url": "https://github.com/malept/sumchecker/issues"
},
"homepage": "https://github.com/malept/sumchecker#readme",
"engines": {
"node": ">= 4.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.0",
"eslint": "^3.3.1",
"eslint-config-standard": "^6.0.0-beta.3",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.0",
"intern": "^3.3.1",
"nyc": "^8.1.0"
},
"dependencies": {
"debug": "^2.2.0"
},
"scripts": {
"ci": "eslint . && intern-client config=tests/intern suites=tests/index reporters=Lcov reporters=Console && codeclimate-test-reporter < lcov.info",
"test": "eslint . && intern-client config=tests/intern suites=tests/index reporters=Pretty"
},
"eslintConfig": {
"env": {
"amd": true
},
"extends": "standard",
"parserOptions": {
"sourceType": "script"
},
"rules": {
"strict": [
"error"
]
}
}
}
|