1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 00:35:00 +00:00
mon-entreprise/publicodes/package.json
Johan Girod 046076f32d 🔥 renomme la commande 'compile' en 'build' pour être conforme aux normes
Et éviter de créer de la confusion si une prochaine commande compile devait venir pour la compilation des règles publicodes
2020-05-18 20:10:03 +02:00

47 lines
1.3 KiB
JSON

{
"name": "publicodes",
"version": "1.0.0-beta.1",
"description": "A declarative language for encoding public algorithm",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/betagouv/mon-entreprise.git",
"directory": "publicodes"
},
"bugs": "https://github.com/betagouv/mon-entreprise/issues?q=is%3Aopen+is%3Aissue+label%3A\"%3Agear%3A+moteur\"",
"homepage": "https://publi.codes/",
"license": "MIT",
"files": [
"dist/index.js",
"dist/types",
"dist/images"
],
"private": false,
"dependencies": {
"classnames": "^2.2.6",
"moo": "^0.5.1",
"nearley": "^2.19.2",
"ramda": "^0.27.0",
"react-easy-emoji": "^1.4.0",
"react-i18next": "^11.4.0",
"react-markdown": "^4.3.1",
"yaml": "^1.9.2"
},
"peerDependencies": {
"react": "^16.13.1",
"react-router-dom": "^5.1.1",
"react-router-hash-link": "^1.2.2"
},
"scripts": {
"prepublishOnly": "yarn test && yarn run build",
"clean": "rimraf dist node_modules",
"prepare": "yarn run clean && yarn run build",
"build": "tsc && yarn run webpack --config webpack.config.js",
"test:file": "yarn mocha-webpack --webpack-config ./webpack.test.js --include test/setupIntl.js",
"test": "yarn test:file \"./{,!(node_modules)/**/}!(webpack).test.js\""
},
"engines": {
"node": ">=12.16.1"
}
}