-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.81 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
{
"name": "agregation-document-budgetaire",
"version": "1.0.0",
"description": "Outil permettant de définir une agrégation d'un document budgétaire",
"main": "scripts/main.js",
"scripts": {
"start": "npm-run-all build serve",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"plans-de-comptes": "npx github:dtc-innovation/plans-de-compte --in data/CA --out data/plansDeCompte",
"grammar": "nearleyc scripts/DocumentBudgetaireQueryLanguage/grammar.ne -o scripts/DocumentBudgetaireQueryLanguage/grammar.js",
"watch": "rollup -c -w -m",
"railroad": "nearley-railroad scripts/DocumentBudgetaireQueryLanguage/grammar.ne -o railroad.html",
"serve": "serve"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"htm"
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtc-innovation/agregation-document-budgetaire.git"
},
"keywords": [],
"author": "David Bruant <[email protected]> (https://twitter.com/DavidBruant)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dtc-innovation/agregation-document-budgetaire/issues"
},
"homepage": "https://github.com/dtc-innovation/agregation-document-budgetaire#readme",
"dependencies": {
"baredux": "github:DavidBruant/baredux",
"d3-array": "^2.4.0",
"d3-fetch": "^1.1.2",
"fast-memoize": "^2.5.1",
"immutable": "^4.0.0-rc.12",
"nearley": "^2.19.0",
"preact": "^8.5.3"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-plugin-htm": "^2.2.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.27.11",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"serve": "^10.1.2"
}
}