-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 945 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
{
"name": "kxx-reader-core",
"version": "1.5.5",
"description": "Core methods for reading Gordic (Ginis) KXX format",
"main": "lib/index.js",
"keywords": [
"gordic",
"ginis",
"kxx"
],
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SmallhillCZ/kxx-reader-core.git"
},
"author": "Martin Kopeček <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/SmallhillCZ/kxx-reader-core/issues"
},
"homepage": "https://github.com/SmallhillCZ/kxx-reader-core#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.12.0",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"dependencies": {
"@types/xregexp": "^3.0.29",
"xregexp": "^4.2.4"
}
}