forked from floydspace/isin-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
60
61
62
63
64
{
"name": "isin-validator",
"version": "1.1.1",
"description": "International Securities Identification Number validator",
"keywords": [
"ISIN",
"International",
"Securities",
"Identification",
"Number",
"validator"
],
"author": {
"name": "Michael Wittig",
"email": "[email protected]"
},
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/floydspace/isin-validator.git"
},
"dependencies": {
"i18n-iso-countries": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@babel/register": "^7.6.2",
"@types/assert-plus": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"assert-plus": "^1.0.0",
"babel-register-ts": "^7.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.0",
"madge": "^3.4.4",
"mocha": "^6.2.2",
"rollup": "^1.25.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-typescript2": "^0.24.3",
"typescript": "^3.6.4"
},
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "mocha",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"build": "rollup --config",
"prepublishOnly": "npm run build"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/floydspace/isin-validator/issues"
}
}