-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "dbffile",
"version": "1.12.0",
"description": "Read and write .dbf (dBase III & Visual FoxPro) files in Node.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -p src && tsc -p test && ncp test/fixtures dist/test/fixtures",
"build:watch": "tsc -w -p src & (ncp test/fixtures dist/test/fixtures && tsc -w -p test)",
"clean": "rimraf dist/",
"prepublish": "npm run self-ref && npm run build",
"test": "mocha --timeout 999999 --colors ./dist/test",
"test:watch": "npm run build:watch & npx mocha ./dist/test/ --watch",
"self-ref": "node ./scripts/enable-self-reference"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yortus/DBFFile.git"
},
"keywords": [
"dbf",
"dBase",
"dBase III",
"vfp",
"Visual FoxPro"
],
"author": {
"name": "Troy Gerwien",
"email": "yortus@gmail.com",
"url": "http://github.com/yortus/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yortus/DBFFile/issues"
},
"homepage": "https://github.com/yortus/DBFFile",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^8.2.2",
"@types/node": "^12.x",
"@types/rimraf": "^2.0.2",
"chai": "^4.2.0",
"mocha": "^9.0.2",
"ncp": "^2.0.0",
"rimraf": "^2.6.3",
"typescript": "^4.3.5"
},
"dependencies": {
"iconv-lite": "^0.4.24"
}
}