overmind-forms
Version:
Forms implementation for overmind
42 lines (41 loc) • 1.15 kB
JSON
{
"name": "overmind-forms",
"version": "0.0.4",
"description": "Forms implementation for overmind",
"repository": "https://github.com/garth/overmind-forms.git",
"author": "Garth Williams",
"license": "MIT",
"keywords": [
"overmind",
"forms"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "rimraf lib && rimraf es",
"build:lib": "tsc --outDir lib --module commonjs --preserveWatchOutput",
"build:es": "tsc --outDir es --module es2015 --preserveWatchOutput",
"build": "npm run build:lib & npm run build:es",
"lint": "tslint -c tslint.json -t verbose 'src/**/*.{ts,tsx}'",
"prettier": "prettier --write \"src/**/*.{js,json,ts,tsx,scss,html}\""
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxBracketSameLine": true
},
"devDependencies": {
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"typescript": "^3.1.6"
},
"dependencies": {
"overmind": "^5.1.0",
"tslib": "^1.9.3"
}
}