An error occurred while loading the file. Please try again.
-
Mathias Chouet authored7f8b1c4a
This project manages its dependencies using npm.
Learn more
{
"name": "jalhyd",
"version": "1.1.0",
"author": "DD",
"license": "ISC",
"description": "JaLHyd, a Javascript Library for Hydraulics",
"repository": {
"type": "git",
"url": "https://gitlab.irstea.fr/cassiopee/jalhyd.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"module": "build/index.js",
"dependencies": {},
"devDependencies": {
"@types/jasmine": "2.8.8",
"@types/node": "10.5.2",
"jasmine-core": "3.4.0",
"jasmine-node": "1.15.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"typescript": "2.9.2"
},
"scripts": {
"build": "npm run buildgeneric -- src/tsconfig.app.json",
"buildspec": "npm run buildgeneric -- spec/tsconfig.spec.jasmine.json",
"buildgeneric": "npm run preprocess; rm -rf build; ./node_modules/typescript/bin/tsc --p",
"runtestremous": "./node_modules/typescript/bin/tsc --p spec/tsconfig-remous-fenetre.spec.json && node ./build/spec/test-remous-fenetre.js",
"jasmine": "npm run buildgeneric -- spec/tsconfig.spec.jasmine.json && ./node_modules/.bin/jasmine",
"karma": "npm run buildgeneric -- spec/tsconfig.spec.karma.json && find ./build -type f -iname \"*.js\" -print0 | xargs -0 sed -i 's/\\(\\(import\\|export\\) .* from .*\\)\";/\\1\\.js\";/g' && ./node_modules/karma/bin/karma start",
"lint": "./node_modules/tslint/bin/tslint -p ./tsconfig.json",
"viz": "tsviz -recursive src/ jalhyd_class_diagram.png",
"package": "npm run build && npm pack --quiet",
"preprocess": "node preprocessors.js"
}
}