-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "validadorcfdi",
"version": "3.1.0",
"main": "./dist/index.js",
"scripts": {
"init": "mkdir dist",
"clean": "rm -rf dist",
"start": "npm run dev",
"dev": "npm test -- -w",
"prepare": "npm run build && find dist/xslt/cfd -type f -name '*.xslt' | xargs sed -i '' 's#\"dist/xslt/cfd#\"node_modules/validadorcfdi/dist/xslt/cfd#g'",
"prebuild": "npm run clean && npm run init",
"build": "babel src --out-dir dist --copy-files",
"test": "npm run build && mocha --require @babel/register ./test/**/*.js"
},
"repository": {
"url": "[email protected]:adminsitracioncfdi/validadorcfdi33.git",
"type": "git"
},
"author": "Alan Rodriguez <[email protected]>",
"license": "GPL-3.0-only",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/eslint-plugin": "^7.23.5",
"@babel/preset-env": "^7.23.6",
"@babel/register": "^7.22.15",
"chai": "^4.1.1",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"mocha": "^10.2.0",
"sinon": "^11.1.2",
"standard": "^17.1.0"
},
"dependencies": {
"libxslt": "^0.10.0",
"node-cache": "^5.1.2",
"node-fetch": "^2.7.0",
"node-forge": "^1.3.0",
"node1-libxmljsmt-myh": "^1.0.8"
},
"standard": {
"env": [
"mocha"
]
},
"files": [
"dist"
]
}