-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
86 lines (86 loc) · 2.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "jscrewit",
"version": "2.39.0",
"description": "Converts plain JavaScript into JSFuck code, which consists of only six different characters: ! ( ) + [ ]",
"keywords": [
"esoteric",
"jsfuck",
"obfuscation"
],
"homepage": "https://jscrew.it",
"bugs": "https://github.com/fasttime/JScrewIt/issues",
"license": "ISC",
"author": "Francesco Trotta <[email protected]> (https://github.com/fasttime)",
"files": [
"Features.md",
"JScrewIt.html",
"api-doc",
"lib",
"screw.js",
"tools",
"ui",
"!.*"
],
"main": "lib/jscrewit.js",
"types": "lib/jscrewit.d.ts",
"bin": {
"jscrewit": "screw.js"
},
"directories": {
"lib": "lib",
"doc": "doc",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/fasttime/JScrewIt.git"
},
"scripts": {
"build": "npm install && npm run -ws build && gulp",
"docs": "gulp docs",
"feature-info": "node dev/legacy/feature-info.js",
"release": "npm version -m 'Release %s' --tag-version-prefix=",
"test": "mocha --check-leaks --ui=ebdd test/{*,*/*,*/*/*}.spec.js"
},
"devDependencies": {
"@cucumber/gherkin": "latest",
"@inquirer/rawlist": "latest",
"@origin-1/eslint-config": "latest",
"@rollup/plugin-node-resolve": "latest",
"acorn": "latest",
"art-js": "latest",
"basic-ftp": "latest",
"c8js": "latest",
"chalk": "latest",
"del": "latest",
"ebdd": "latest",
"eslint-formatter-compact": "latest",
"eslint-plugin-ebdd": "latest",
"eslint-plugin-eslint-env": "latest",
"expectations": "latest",
"glob": "latest",
"globals": "latest",
"gulp": "latest",
"gulp-eslint-new": "latest",
"gulp-jsdoc3": "latest",
"gulp-rename": "latest",
"gulp-tap": "latest",
"gulp-uglify": "latest",
"handlebars": "latest",
"mocha": "3",
"mocha-bar": "latest",
"postrequire": "latest",
"rollup": "latest",
"rollup-plugin-cleanup": "latest",
"rollup-plugin-polyfill-node": "latest",
"sync-readable": "latest",
"tslib": "latest",
"typedoc": "latest",
"typedoc-plugin-markdown": "latest",
"typescript": "latest",
"uglify-js": "3.19.1"
},
"workspaces": [
"./packages/*"
]
}