-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.65 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
61
62
63
64
65
66
67
68
{
"name": "anon-doc-budg",
"version": "1.2.0",
"description": "Outil d'anonymisation de fichiers DocumentBudgetaire",
"type": "module",
"engines": {
"node": ">=14"
},
"main": "index.js",
"scripts": {
"test": "mocha --require babel-core/register",
"benchmark": "node benchmark/main.js",
"start": "serve",
"build": "browserify src/js/main.js -o build/bundle.js -p [minifyify --no-map]",
"watch": "watchify src/js/main.js -o build/bundle.js -d -v"
},
"bin": {
"anon-doc-budg": "bin/anon-doc-budg.js"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.19.0",
"fs-extra": "^7.0.1",
"p-limit": "^3.1.0",
"xml-buffer-tostring": "^0.2.0",
"xmldom": "^0.5.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^7.3.0",
"browserify": "^14.5.0",
"chai": "^4.2.0",
"minifyify": "^7.3.5",
"mocha": "^8.2.1",
"serve": "^11.3.2",
"tmp-promise": "^3.0.2",
"watchify": "^3.11.1"
},
"babel": {
"presets": [
"env"
]
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
]
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtc-innovation/anonymisation-document-budgetaire.git"
},
"keywords": [],
"author": "David Bruant <bruant.d@gmail.com> (https://twitter.com/DavidBruant)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtc-innovation/anonymisation-document-budgetaire/issues"
},
"homepage": "https://github.com/dtc-innovation/anonymisation-document-budgetaire#readme"
}