colurs
Version:
Colors for NodeJS and Browser
52 lines (51 loc) • 1.57 kB
JSON
{
"name": "colurs",
"version": "1.0.29",
"description": "Colors for NodeJS and Browser",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "node ./build/clean",
"compile": "node ./node_modules/typescript/bin/tsc -p ./src/tsconfig.json",
"browserify": "node ./node_modules/browserify/bin/cmd ./dist/index.js -o ./dist/browser.js",
"docs": "node ./node_modules/typedoc/bin/typedoc --out ./docs ./src --options ./typedoc.json",
"commit": "git add . && git commit -am 'auto commit' && git push",
"bump": "node ./build/bump",
"build": "npm run compile && npm run browserify && npm run docs",
"release": "npm run build && npm run bump && npm run commit && npm publish",
"test": "mocha --opts ./src/mocha.opts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/origin1tech/colurs.git"
},
"keywords": [
"Colors",
"Chalk",
"NodeJS",
"Browser"
],
"author": "Origin1 Technologies <origin1tech@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/origin1tech/colurs/issues"
},
"homepage": "https://github.com/origin1tech/colurs#readme",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/node": "^8.0.7",
"browserify": "^14.4.0",
"chai": "^4.1.2",
"del": "^3.0.0",
"mocha": "^5.2.0",
"stiks": "^1.1.4",
"ts-node": "^3.1.0",
"typedoc": "^0.11.1",
"typescript": "^2.5.0"
},
"dependencies": {
"ansi-html": "0.0.7",
"object-assign": "^4.1.1"
}
}