UNPKG

coolant

Version:

The modular build radiator

70 lines (69 loc) 2.03 kB
{ "name": "coolant", "version": "0.0.9", "description": "The modular build radiator", "main": "src/index.js", "types": "src/index.d.ts", "files": [ "src/**/*.d.ts", "src/**/*.js", "src/**/*.js.map", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "git://github.com/nbeach/coolant.git" }, "author": "Nicholas Beach <nicholas.c.beach@gmail.com> (http://nicholasbeach.com)", "license": "MIT", "bugs": { "url": "https://github.com/nbeach/coolant/issues" }, "keywords": [ "build", "monitor", "radiator" ], "scripts": { "clean": "rimraf src/**/*.js src/**/*.js.map src/**/*.d.ts", "build": "yarn run clean && tsc --project tsconfig.build.json", "release:tag": "git tag $(node -p -e \"require('./package.json').version\") && git push origin --tags", "release": "yarn run test:once && yarn run build && yarn run release:tag && yarn publish && yarn run clean", "storybook": "start-storybook -s ./public", "test": "mocha --opts mocha.opts --watch", "test:once": "mocha --opts mocha.opts", "lint": "tslint --project .", "lint:fix": "tslint --fix --project .", "compile": "tsc --noEmit", "ci": "yarn lint && yarn test:once && yarn build" }, "devDependencies": { "@babel/core": "^7.5.5", "@storybook/react": "^5.2.8", "@types/chai": "^4.1.7", "@types/chai-dom": "0.0.7", "@types/mocha": "^5.2.7", "@types/node": "^12.6.8", "@types/react": "^16.8.23", "@types/react-dom": "^16.9.4", "awesome-typescript-loader": "^5.2.1", "babel-loader": "^8.0.6", "chai": "^4.2.0", "chai-dom": "^1.8.1", "jsdom": "^15.1.1", "mocha": "^6.2.0", "rimraf": "^2.6.3", "ts-node": "^8.3.0", "tslint": "^5.20.1", "tslint-immutable": "^6.0.1", "tslint-no-unused-expression-chai": "^0.1.4", "typescript": "~3.7.3" }, "dependencies": { "moment": "^2.24.0", "react": "^16.8.6", "react-dom": "^16.12.0", "react-icons": "^3.7.0" } }