-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.1 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
65
66
67
68
69
{
"name": "data-forge-fs",
"version": "0.0.9",
"description": "This library contains the file system extensions to Data-Forge that allow it to directly read and write CSV and JSON files in Node.js.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "tsc",
"clean-build": "rm -rf build/* && tsc",
"build:watch": "tsc --watch",
"clean-build:watch": "rm -rf build/* && tsc --watch",
"t": "npm run test",
"test": "mocha --opts ./src/test/mocha.opts",
"tw": "npm run test:watch",
"test:watch": "nyc mocha --watch --opts ./src/test/mocha.opts",
"api-docs": "typedoc --options typedoc.json --out docs/api ./src/index.ts",
"prepublishOnly": "npm run clean && npm run test && npm run build",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-forge/data-forge-fs.git"
},
"keywords": [],
"author": "ashley@codecapers.com.au",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-forge/data-forge-fs/issues"
},
"homepage": "https://github.com/data-forge/data-forge-fs#readme",
"dependencies": {
"chai": "^4.1.2"
},
"peerDependencies": {
"data-forge": "^1.8.13"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/mock-require": "^2.0.0",
"@types/node": "8.0.28",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"nyc": "^13.0.1",
"ts-node": "3.3.0",
"typedoc": "^0.12.0",
"typescript": "2.5.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"src/test/**/*",
"build/**/*",
"docs/**/*",
"coverage/**/*"
],
"reporter": [
"text-summary",
"html"
],
"all": true
}
}