-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "figit",
"version": "0.0.8",
"description": "JavaScript and Handlebars data templates - Producing templated configuration has never been easier!",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "node ./build/cli.js",
"start:dev": "nodemon",
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "tsc --incremental",
"bw": "npm run build:watch",
"build:watch": "tsc --incremental --watch",
"prepublishOnly": "npm test && npm run clean && tsc",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"t": "npm run test",
"test": "jest",
"tw": "npm run test:watch",
"test:watch": "jest --watch"
},
"bin": {
"figit": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/ashleydavis/figit.git"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashleydavis/figit/issues"
},
"homepage": "https://github.com/ashleydavis/figit#readme",
"dependencies": {
"handlebars": "^4.7.7",
"minimist": "^1.2.5",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/minimist": "^1.2.1",
"@types/node": "^14.14.25",
"@types/yaml": "^1.9.7",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"source-map-support": "0.5.19",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
}
}