-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "vinfo",
"version": "0.1.1",
"description": "Validate and decode VIN number.",
"license": "ISC",
"repository": "honzahommer/vinfo",
"author": "Honza Hommer <honza@hommer.cz> (https://hommer.cz)",
"engines": {
"node": ">=4.0"
},
"scripts": {
"transpile": "rimraf dist && babel src -d dist",
"prepublish": "npm run transpile",
"doc": "rimraf esdoc && esdoc -c esdoc.json",
"lint": "eslint .",
"mocha": "mocha specs --recursive --compilers js:babel-register",
"start": "export NODE_ENV=development; npm run mocha -- --watch --growl",
"test": "export NODE_ENV=test; npm run lint && rimraf coverage && nyc npm run mocha"
},
"files": [
"dist"
],
"main": "dist/lib/index.js",
"keywords": [
"vin",
"wmi",
"vds",
"vis"
],
"dependencies": {
"validator": "github:honzahommer/validator.js"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-istanbul": "^2.0.3",
"babel-preset-latest": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.0",
"codecov": "^1.0.1",
"esdoc": "^0.4.8",
"eslint": "^3.8.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.0.1",
"mocha": "^3.1.2",
"nyc": "^8.3.1",
"rimraf": "^2.5.4",
"sinon": "^1.17.6"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"reporter": [
"lcovonly",
"html",
"text"
]
}
}