letype
Version:
Type checker for any data structures
58 lines (57 loc) • 1.73 kB
JSON
{
"name": "letype",
"version": "1.1.0",
"description": "Type checker for any data structures",
"main": "dist/letype.js",
"module": "dist/letype.js",
"jsnext:main": "dist/letype.es.js",
"scripts": {
"build": "npm run roll && npm run min",
"roll": "npm run roll-es && npm run roll-js",
"roll-es": "rollup -c -n Letype -f es -i src/index.js -o dist/letype.es.js -m",
"roll-js": "rollup -c -n Letype -f umd -i src/index.js -o dist/letype.js -m",
"min": "npm run min-es && npm run min-js",
"min-js": "google-closure-compiler-js dist/letype.js > dist/letype.min.js",
"min-es": "squash dist/letype.es.js -o dist/letype.es.min.js",
"test:watch": "jest --watch",
"test": "jest",
"test:ci": "npm run test -- --ci",
"ci": "npm run test:ci && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marcisbee/letype.git"
},
"keywords": [
"type check",
"type checker",
"type",
"types",
"checker",
"validator"
],
"author": "Marcis Bergmanis <marcisbergmanis@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marcisbee/letype/issues"
},
"homepage": "https://github.com/Marcisbee/letype#readme",
"devDependencies": {
"@babel/preset-env": "^7.8.4",
"@types/jest": "^25.1.3",
"babel-jest": "^25.1.0",
"butternut": "^0.4.6",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"google-closure-compiler-js": "^20180204.0.0",
"jest": "^25.1.0",
"rollup": "^1.31.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^3.8.2"
},
"files": [
"dist"
]
}