-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "parsecnp",
"version": "0.1.9",
"description": "'Parser' pentru cod numeric personal (CNP)",
"main": "src/ParseCNP.js",
"scripts": {
"build": "rollup --config rollup.config.dist.mjs",
"dev": "rollup --config rollup.config.dev.mjs --watch",
"test": "TZ='Europe/London' mocha --require @babel/register ./test/",
"coverage": "nyc mocha --require @babel/register ./test/"
},
"repository": "git+https://[email protected]/kislakiruben/parsecnp.git",
"keywords": [
"cnp",
"parser",
"javsacript"
],
"author": "Ruben Kislaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/kislakiruben/parsecnp/issues"
},
"homepage": "https://github.com/kislakiruben/parsecnp#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@rollup/plugin-babel": "^6.0.3",
"chai": "^4.3.7",
"chai-datetime": "^1.8.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"rollup": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^14.0.2"
}
}