-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "data-mask",
"version": "0.0.4",
"description": "dependency free string masking library",
"main": "dist/data-mask.min.js",
"license": "MIT",
"homepage": "https://github.com/scokmen/data-mask#readme",
"repository": {
"type": "git",
"url": "https://github.com/scokmen/data-mask.git"
},
"authors": [
"Soner Çökmen <sonercokmen@gmail.com>"
],
"keywords": [
"data",
"string",
"masking"
],
"bugs": {
"url": "https://github.com/scokmen/data-mask/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha ./test/**/*.spec.js --exit",
"lint": "./node_modules/.bin/eslint ./src/**/*.js --ignore-pattern dist --ignore-pattern node_modules",
"cov": "./node_modules/.bin/nyc --all --check-coverage --lines=95 --reporter=lcov --reporter=text yarn test",
"js:build": "./node_modules/.bin/gulp js:build"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"jshint-stylish": "^2.2.1",
"mocha": "^5.0.5",
"nyc": "^11.6.0"
}
}