-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 905 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 905 Bytes
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
{
"name": "imei",
"version": "0.0.1",
"description": "Utilities for dealing with IMEIs",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/B2MSolutions/node-imei.git"
},
"keywords": [
"imei"
],
"author": { "name": "B2M Solutions", "url": "https://github.com/B2MSolutions" },
"contributors": [
{ "name": "Roy Lines", "url":"https://github.com/roylines" },
{ "name": "James Bloomer", "url":"https://github.com/jamesbloomer" }
],
"licenses": [{
"type": "MIT",
"url": "https://github.com/B2MSolutions/node-imei/raw/master/LICENSE"
}],
"bugs": {
"url": "https://github.com/B2MSolutions/node-imei/issues"
},
"dependencies": {
"checkdigit": "*"
},
"devDependencies" : {
"mocha" : "*",
"sinon" : "*"
},
"engines": {
"node": "0.10.x",
"npm": "1.3.x"
}
}