-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.39 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
{
"name": "fodselsnummer",
"version": "0.1.1",
"description": "National identification number of Norway.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npm run jsonlint && npm run jshint && mocha && npm run coverage",
"mocha": "mocha",
"jshint": "jshint index.js test",
"jsonlint": "jsonlint package.json --quiet && jsonlint npm-shrinkwrap.json --quiet && jsonlint .jshintrc --quiet",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"coverage-report": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"nin",
"Norway",
"Fødselsnummer",
"Personnummer",
"National Identification",
"cli",
"bin"
],
"author": {
"name": "Anders Olsen Sandvik",
"email": "[email protected]",
"url": "https://andersos.net/"
},
"repository": "andersos/fodselsnummer.git",
"bugs": {
"url": "https://github.com/andersos/fodselsnummer/issues"
},
"devDependencies": {
"coveralls": "2.11.2",
"istanbul": "0.3.5",
"jshint": "2.5.11",
"jsonlint": "1.6.2",
"mocha": "2.1.0",
"mocha-lcov-reporter": "0.0.1"
}
}