-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.56 KB
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
{
"name": "@brisberg/spindle",
"version": "0.2.2",
"description": "Opinionated Build Tool for Twine and Tweego",
"main": "dist/cli.js",
"scripts": {
"clean": "rm -rf dist/",
"build": "tsc",
"postbuild": "chmod +x dist/cli.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "yarn run clean && yarn run build"
},
"bin": {
"spindle": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brisberg/spindle.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"twine",
"tweego",
"twine2"
],
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"header/**/*.{js,html}",
"storyformats"
],
"author": "Brandon Risberg",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/brisberg/spindle/issues"
},
"homepage": "https://github.com/brisberg/spindle#readme",
"dependencies": {
"@types/gulp": "^4.0.7",
"@types/gulp-concat": "^0.0.32",
"@types/gulp-filter": "^3.0.33",
"@types/gulp-header": "^2.0.0",
"@types/gulp-if": "^0.0.33",
"@types/js-yaml": "^3.12.5",
"@types/undertaker": "^1.2.3",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-filter": "^6.0.0",
"gulp-footer": "^2.0.2",
"gulp-header": "^2.0.9",
"gulp-if": "^3.0.0",
"js-yaml": "^3.14.0",
"minimist": "^1.2.5",
"tslib": "^2.0.3"
},
"devDependencies": {
"@types/node": "^14.14.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}