-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "spanish-car-plate",
"version": "1.0.4",
"description": "Spanish Car Plate validation",
"main": "dist/index.js",
"license": "MIT",
"author": "Nahuel Scotti <[email protected]> (https://www.singuerinc.com)",
"repository": "singuerinc/spanish-car-plate",
"engines": {
"node": ">=8"
},
"scripts": {
"build": "rollup --config",
"dev": "rollup --config -w",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"np": "np",
"test": "yarn build && nyc mocha",
"test:watch": "nyc mocha --watch",
"release": "NODE_ENV=production yarn test && yarn np",
"report": "nyc report --reporter=html"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"benchmark": "^2.1.4",
"coveralls": "^3.0.11",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.3.0",
"np": "^6.2.1",
"nyc": "^15.0.1",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0"
},
"keywords": [
"car",
"coche",
"auto",
"plate",
"matricula",
"targa",
"patente",
"spain",
"españa"
],
"types": "types/index.d.ts",
"files": [
"dist/index.js",
"dist/index.js.map",
"types/index.d.ts"
],
"np": {}
}