-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.11 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
{
"name": "inflate-template",
"version": "1.1.9",
"description": "This library is responsible for inflating a template with data. It provides the 'export' functionality of Data-Forge Plot.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts test",
"cli-test": "ts-node src/index.ts export --template=test-template --out=test-output --overwrite",
"c": "rm -rf build/*",
"clean": "rm -rf build/*",
"b": "tsc",
"build": "tsc",
"cb": "rm -rf build/* && npm run build",
"clean-build": "rm -rf build/* && npm run build",
"build:watch": "tsc --watch",
"clean-build:watch": "rm -rf build/* && tsc --watch",
"t": "mocha --opts ./src/test/mocha.opts",
"test": "mocha --opts ./src/test/mocha.opts",
"tw": "mocha --watch --watch-extensions ts --opts ./src/test/mocha.opts",
"test:watch": "mocha --watch --watch-extensions ts --opts ./src/test/mocha.opts",
"prepublishOnly": "npm run build"
},
"bin": {
"inflate-template": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-forge/export.git"
},
"keywords": [],
"author": "ashley@codecapers.com.au",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-forge/export/issues"
},
"homepage": "https://github.com/data-forge/export#readme",
"dependencies": {
"chai": "4.1.2",
"fs-extra": "^7.0.1",
"globby": "^8.0.2",
"handlebars": "^4.1.1",
"promisify-any": "^2.0.1",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/chai": "4.0.4",
"@types/fs-extra": "^5.0.5",
"@types/globby": "^8.0.0",
"@types/handlebars": "^4.1.0",
"@types/mocha": "2.2.43",
"@types/node": "^15.0.1",
"@types/yargs": "^11.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "3.5.3",
"mock-fs": "^4.8.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}