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

41 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2016-03-24 19:46:32 +00:00
{
"name": "jsfuckify",
2016-03-25 15:58:33 +00:00
"version": "0.0.1",
2016-03-25 15:39:04 +00:00
"description": "Browserify transformer and CLI to convert normal JS into JSFuck",
2016-03-24 19:46:32 +00:00
"main": "lib/index.js",
"scripts": {
2016-03-25 13:04:14 +00:00
"postinstall": "npm run create-dirs",
"create-dirs": "mkdir -p bin/ tests/out",
2016-03-25 12:28:28 +00:00
"build-cli": "browserify ./lib/cli.js -o ./bin/cli.js",
"test": "./scripts/runtests",
"lint": "eslint 'lib/'",
2016-03-25 13:08:22 +00:00
"test-build": "browserify tests/to-build.js -t ./lib/index.js -o tests/out/built.js",
2016-03-25 13:04:14 +00:00
"coverage": "istanbul cover node_modules/.bin/_mocha -- --require scripts/test-helper.js --bail --recursive 'tests/*.js'",
2016-03-25 12:28:28 +00:00
"mocha": "mocha --require scripts/test-helper.js --bail 'tests/**/*.js'"
2016-03-24 19:46:32 +00:00
},
2016-03-25 15:39:04 +00:00
"keywords": [
"jsfuck",
"jscrewit",
"esoteric"
],
2016-03-24 19:58:14 +00:00
"bin": "./bin/cli.js",
2016-03-24 20:05:44 +00:00
"author": "TheOrangeOne <git@theorangeone.net>",
2016-03-24 19:46:32 +00:00
"dependencies": {
"browserify-transform-tools": "=1.5.3",
"jscrewit": "=1.10.1"
},
"devDependencies": {
2016-03-25 16:09:27 +00:00
"babel-eslint": "=5.0.0",
2016-03-24 20:05:44 +00:00
"browserify": "=13.0.0",
2016-03-25 13:14:19 +00:00
"chai": "=3.5.0",
2016-03-24 19:46:32 +00:00
"eslint": "=1.5.0",
"eslint-config": "git://github.com/dabapps/eslint-config.git",
2016-03-25 13:14:19 +00:00
"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"
2016-03-24 19:46:32 +00:00
}
}