-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
59
{
"name": "ein-validator",
"version": "1.0.1",
"description": "Employer Identification Number validator and masker",
"keywords": [
"EIN",
"IRS",
"TIN",
"US",
"USA",
"identification",
"taxpayer",
"validator"
],
"homepage": "https://github.com/uphold/ein-validator",
"bugs": "https://github.com/uphold/ein-validator/issues",
"license": "MIT",
"author": "Uphold",
"main": "dist/src",
"repository": {
"type": "git",
"url": "https://github.com/uphold/ein-validator.git"
},
"scripts": {
"changelog": "github_changelog_generator --no-issues --header-label='# Changelog' --future-release=v$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"coverage": "babel-node node_modules/.bin/isparta cover --report html _mocha -- $npm_package_options_mocha",
"lint": "eslint src test && jscs src test",
"prepublish": "npm run transpile",
"test": "mocha $npm_package_options_mocha",
"testdocker": "docker-compose run --rm sut",
"transpile": "rm -rf dist/* && babel src --out-dir dist/src",
"version": "npm run changelog --future-release=$npm_package_version && npm run transpile && git add -A CHANGELOG.md dist"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.3.13",
"eslint": "^2.7.0",
"eslint-config-seegno": "^4.0.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-sort-class-members": "^1.0.1",
"isparta": "^4.0.0",
"jscs": "^2.11.0",
"jscs-config-seegno": "^2.0.0",
"mocha": "^2.3.4",
"pre-commit": "^1.1.2",
"should": "^8.0.0"
},
"engines": {
"node": ">=0.10"
},
"options": {
"mocha": "--compilers js:babel-register --recursive --require should"
},
"pre-commit": [
"lint"
]
}