-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 955 Bytes
/
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
{
"name": "sj-mask-js",
"version": "0.0.1",
"description": "EXPERIMENT: A NPM package that exports functions to mask values.",
"main": "build/index.js",
"scripts": {
"build": "npm run lint && babel ./src -d ./lib",
"lint": "eslint ./src",
"test": "nyc mocha --require babel-core/register",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevenbjohnson/mask-js.git"
},
"keywords": [
"npm",
"node",
"mask",
"javascript"
],
"author": "Steven Johnson",
"license": "ISC",
"bugs": {
"url": "https://github.com/stevenbjohnson/mask-js/issues"
},
"homepage": "https://github.com/stevenbjohnson/mask-js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.29.0",
"mocha": "^9.0.1",
"nyc": "^15.1.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}