-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 744 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 744 Bytes
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
{
"name": "iron-mask",
"version": "1.0.2",
"description": "A flexible way to mask sensitive data",
"main": "src/iron-mask.js",
"scripts": {
"test": "nyc ava 'test/**/*.js'",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Vitor Abner <vitorabner@gmail.com>",
"license": "MIT",
"dependencies": {
"ramda": "^0.23.0"
},
"devDependencies": {
"ava": "^0.19.1",
"coveralls": "^2.13.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"nyc": "^10.2.0"
}
}