forked from ttoohey/idor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 KB
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
{
"name": "idor",
"version": "2.0.1",
"description": "A type-based ID obfuscation library to prevent insecure direct object references (IDOR)",
"homepage": "https://github.com/ttoohey/idor",
"repository": {
"type": "git",
"url": "https://github.com/ttoohey/idor.git"
},
"main": "lib",
"files": [
"lib/*.js",
"lib/*.js.map",
"lib/**/*.js",
"lib/**/*.js.map"
],
"scripts": {
"build": "babel -d lib src",
"build:dev": "babel -d lib src -s",
"clean": "rm -rf lib && mkdir lib",
"lint": "eslint --ext .js --ext .json src",
"prepare": "npm run clean && npm run build",
"repl": "babel-node repl",
"test": "jest"
},
"author": "Gency Digital <hello@gency.com.au>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.5",
"@babel/node": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.5.0",
"prettier": "^2.5.1"
}
}