-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "jsmasker",
"version": "1.2.0",
"description": "A flexible module to mask sensitive properties in objects with customizable options, for both Node.js and browser",
"main": "src/index.js",
"browser": "dist/jsmasker.min.js",
"scripts": {
"test": "node test/index.test.js",
"build": "webpack --config scripts/webpack.config.js",
"prepublishOnly": "npm run build",
"release:first": "standard-version --first-release -a -s",
"release": "standard-version -a -s",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"pretest": "npm run lint",
"prepare": "npm run build",
"ci": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billchurch/jsmasker.git"
},
"keywords": [
"mask",
"sanitize",
"security",
"privacy",
"browser"
],
"files": [
"LICENSE",
"dist/jsmasker.min.js",
"src/*"
],
"author": "Bill Church <wmchurch@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/billchurch/jsmasker/issues"
},
"homepage": "https://github.com/billchurch/jsmasker#readme",
"engines": {
"node": ">=6.9.1"
},
"devDependencies": {
"conventional-changelog-cli": "^5.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}