-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "typebeast",
"version": "0.7.7",
"main": "index.js",
"license": "MIT",
"description": "Work in progress, see docs for more information.",
"directories": {
"doc": "docs"
},
"scripts": {
"serve": "serve -s public -p 3000",
"start": "node cli --config mocks/demo-site.yml --output public/typebeast --no-sourcemap --no-sass --compression compressed",
"test": "jest",
"build": "yarn start",
"cli:minimum": "node cli --json --config mocks/minimum.yml --output build/minimum",
"cli:demo-site": "node cli --json --config mocks/demo-site.yml --output build/demo-site",
"cli:kitchen-sink": "node cli --json --config mocks/kitchen-sink.yml --output build/kitchen-sink"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xdmorgan/typebeast.git"
},
"keywords": [],
"author": "Dan Morgan",
"bin": {
"typebeast": "./cli/index.js"
},
"bugs": {
"url": "https://github.com/xdmorgan/typebeast/issues"
},
"homepage": "https://github.com/xdmorgan/typebeast#readme",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"fs-extra": "^9.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"meow": "^6.1.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"yaml": "^1.8.2"
},
"devDependencies": {
"jest": "^25.1.0",
"serve": "^11.3.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**",
"!**/vendor/**"
]
}
}