1
Fork 0
solar-conflux/typescript/monadic/package.json

47 lines
851 B
JSON
Raw Normal View History

{
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "monadic",
"author": "Matei Adriel",
"module": "dist/monadic.esm.js",
"devDependencies": {
"husky": "^4.2.5",
"parcel": "^1.12.4",
"tsdx": "^0.13.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"fp-ts": "^2.6.0",
"helpers": "^0.0.6"
}
}