-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 958 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
33
34
35
36
{
"name": "nhs-number-validator",
"version": "1.1.1",
"description": "Validate NHS numbers in various guises",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jasmine-node .",
"test-watch": "./node_modules/.bin/jasmine-node . --autotest",
"lint": "./node_modules/.bin/jshint *.js",
"cli": "./cli.js"
},
"bin": {
"nhs-number-validator": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spikeheap/nhs-number-validator.git"
},
"keywords": [
"nhs",
"validator",
"validation"
],
"author": "Ryan Brooks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/spikeheap/nhs-number-validator/issues"
},
"homepage": "https://github.com/spikeheap/nhs-number-validator#readme",
"devDependencies": {
"jasmine-core": "^2.3.4",
"jasmine-node": "^1.14.5",
"js-combinatorics": "^0.5.0",
"jshint": "^2.8.0"
}
}