-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 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
{
"name": "gics",
"version": "3.0.0",
"description": "A Javascript library to parse and manipulate GICS codes",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"test": "eslint ./src && nyc --reporter=html --reporter=text mocha",
"lint": "eslint ./src",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"gics",
"fintech",
"finance",
"sector",
"industry",
"clasification",
"MSCI"
],
"author": "Gunther Schneider <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"chai-things": "^0.2.0",
"coveralls": "^3.0.9",
"csv-parse": "^4.8.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"eslint": "^6.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/bluealba/gics"
}
}