-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "naughtychecker",
"version": "2.0.2",
"description": "NodeJS module to check naughty strings, which have a high probability of causing issues when used as user-input data",
"main": "./distribution/naughtychecker.js",
"scripts": {
"test": "gulp",
"build": "babel src --out-dir distribution",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gautamkrishnar/naughtychecker.js.git"
},
"keywords": [
"naughty",
"string",
"input",
"validation",
"malicious",
"input"
],
"author": "Gautam krishna R <r.gautamkrishna@gmail.com> (http://www.github.com/gautamkrishnar)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gautamkrishnar/naughtychecker.js/issues"
},
"homepage": "https://github.com/gautamkrishnar/naughtychecker.js#readme",
"dependencies": {
"async-file": "^2.0.2",
"axios": "^0.15.3",
"babel-polyfill": "^6.23.0",
"moment": "^2.17.1"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-mocha": "^4.0.1",
"gulp-standard": "^8.0.3",
"mocha": "^3.2.0",
"run-sequence": "^1.2.2",
"should": "^11.1.2",
"standard": "^8.6.0"
},
"standard": {
"env": [
"mocha"
]
}
}