archive
/
JSFuckify
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
JSFuckify/package.json

35 lines
1.1 KiB
JSON

{
"name": "jsfuckify",
"version": "0.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"postinstall": "npm run create-dirs",
"create-dirs": "mkdir -p bin/ tests/out",
"build-cli": "browserify ./lib/cli.js -o ./bin/cli.js",
"test": "./scripts/runtests",
"lint": "eslint 'lib/'",
"test-build": "browserify tests/build-test.js -t ./lib/index.js -o tests/out/build-test.js",
"coverage": "istanbul cover node_modules/.bin/_mocha -- --require scripts/test-helper.js --bail --recursive 'tests/*.js'",
"mocha": "mocha --require scripts/test-helper.js --bail 'tests/**/*.js'"
},
"bin": "./bin/cli.js",
"author": "TheOrangeOne <git@theorangeone.net>",
"dependencies": {
"browserify-transform-tools": "=1.5.3",
"jscrewit": "=1.10.1"
},
"devDependencies": {
"browserify": "=13.0.0",
"chai": "^3.5.0",
"eslint": "=1.5.0",
"eslint-config": "git://github.com/dabapps/eslint-config.git",
"eslint-plugin-react": "^4.2.3",
"istanbul": "^0.4.2",
"jsonlint": "^1.6.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
}
}