-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
113 lines (113 loc) · 3.29 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@denali-js/cli",
"version": "0.0.0-development",
"description": "The official CLI for creating, building, and running Denali apps and addons",
"homepage": "http://denalijs.org",
"repository": "denali-js/cli",
"author": {
"name": "Dave Wasmer",
"email": "davewasmer@gmail.com",
"url": "http://davewasmer.com"
},
"bin": {
"denali": "dist/bin/denali"
},
"main": "dist/lib/index.js",
"engines": {
"node": ">=7.6"
},
"files": [
"dist"
],
"publishConfig": {
"tag": "canary"
},
"keywords": [
"denali",
"cli",
"framework",
"opinionated",
"server"
],
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"ava": "^0.25.0",
"husky": "^0.14.3",
"nyc": "^11.4.1",
"semantic-release": "^12.4.1",
"standard-version": "^4.3.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"scripts": {
"build": "npm run build:clean && npm run build:blueprints && npm run build:compile && npm run build:bin && npm run build:templates",
"build:clean": "rm -rf dist coverage .nyc_output && mkdir dist",
"build:blueprints": "cp -R blueprints dist/blueprints",
"build:compile": "tsc",
"build:bin": "mv dist/bin/denali.js dist/bin/denali && chmod +x dist/bin/denali",
"build:templates": "cp -r lib/templates dist/lib/templates",
"commitmsg": "commitlint -e $GIT_PARAMS",
"prepublishOnly": "npm run build",
"lint": "! tslint --project tsconfig.json -c tslint.json | sed \"s|$PWD/||\" | grep ERROR",
"test": "npm run lint && npm run build && nyc ava dist/test/acceptance",
"semantic-release": "semantic-release"
},
"license": "MIT",
"dependencies": {
"@denali-js/documenter": "^1.0.5",
"@types/bluebird": "^3.5.20",
"@types/debug": "^0.0.30",
"@types/dotenv": "^4.0.2",
"@types/flat": "^0.0.28",
"@types/fs-extra": "^5.0.1",
"@types/lodash": "^4.14.104",
"@types/mkdirp": "^0.5.2",
"@types/node": "^9.4.6",
"@types/resolve": "^0.0.7",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.5.0",
"@types/source-map-support": "^0.4.0",
"@types/tmp": "^0.0.33",
"@types/yargs": "^11.0.0",
"bluebird": "^3.5.1",
"broccoli": "^0.16.9",
"broccoli-concat": "^3.2.2",
"broccoli-file-creator": "^1.1.1",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^2.0.0",
"broccoli-plugin": "^1.3.0",
"broccoli-slow-trees": "3.0.1",
"broccoli-stew": "^1.5.0",
"chalk": "^2.3.1",
"command-exists": "^1.2.2",
"copy-dereference": "^1.0.0",
"debug": "^3.1.0",
"dedent-js": "^1.0.1",
"dotenv": "^5.0.1",
"fast-sourcemap-concat": "^1.2.4",
"find-plugins": "^1.1.6",
"fs-extra": "^5.0.0",
"globby": "^7.1.1",
"is-directory": "^0.3.1",
"lodash": "^4.17.5",
"mkdirp": "^0.5.1",
"nested-error-stacks": "^2.0.0",
"ora": "^1.4.0",
"pkg-dir": "^2.0.0",
"read-pkg": "^3.0.0",
"read-pkg-up": "^3.0.0",
"require-tree": "^1.1.1",
"resolve": "^1.5.0",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"source-map-support": "^0.5.3",
"source-map-url": "^0.4.0",
"symlink-or-copy": "^1.2.0",
"tmp": "^0.0.33",
"tslib": "^1.9.0",
"walk-sync": "^0.3.2",
"yargs": "^11.0.0"
},
"types": "dist/lib/index.d.ts"
}