This repository was archived by the owner on Jul 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.23 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.23 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@andersnormal/fluffy",
"version": "1.2.2",
"description": "A teeny tiny server side renderer middleware for Vue.js",
"main": "dist/main.js",
"bin": {
"fluffy": "./bin/fluffy"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json --outDir ./dist",
"ci": "npm run test:ci",
"clean": "npm run rimraf -- dist node_modules",
"clean:dist": "npm run rimraf -- dist",
"rimraf": "rimraf",
"jest": "jest",
"server:dev": "cross-env NODE_ENV=development ./node_modules/.bin/nodemon --watch dist ./dist/main.js",
"start": "cross-env NODE_ENV=development npm run build && concurrently \"npm run watch\" \"npm run server:dev\"",
"test": "cross-env NODE_ENV=test npm run jest -- --coverage --config jest.test.json",
"test:ci": "npm run test --runInBand",
"watch": "tsc --watch -p tsconfig.json --outDir ./dist"
},
"files": [
"bin",
"dist",
"types",
"scripts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andersnormal/fluffy.git"
},
"author": {
"name": "Sebastian Döll",
"email": "sebastian@katallaxie.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andersnormal/fluffy/issues"
},
"homepage": "https://github.com/andersnormal/fluffy#readme",
"devDependencies": {
"@types/jest": "^23.1.3",
"@types/koa": "^2.0.46",
"@types/koa-router": "^7.0.30",
"@types/node": "^10.5.1",
"concurrently": "^3.6.0",
"cross-env": "^5.2.0",
"jest": "^23.2.0",
"jest-cli": "^23.2.0",
"mock-req": "^0.2.0",
"nodemon": "^1.17.5",
"prettier": "^1.13.7",
"rimraf": "^2.6.2",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-loader": "^3.6.0"
},
"engines": {
"node": ">=9.11.2",
"npm": ">=4"
},
"dependencies": {
"assert": "^1.4.1",
"chalk": "^2.4.1",
"http-graceful-shutdown": "^2.1.1",
"koa": "^2.5.1",
"koa-router": "^7.4.0",
"koa-webpack": "^5.0.2",
"lru-cache": "^4.1.3",
"memory-fs": "^0.4.1",
"ts-node": "^7.0.0",
"tslib": "^1.9.3",
"typescript": "^2.9.2",
"vue-server-renderer": "^2.5.16",
"webpack": "^4.14.0",
"yargs": "^12.0.1"
}
}