-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "bigojs",
"version": "1.0.2",
"description": "Mustache based serverside rendered boilerplater",
"main": "dist/index.js",
"scripts": {
"start": "npm run build:live",
"copy": "copyfiles --up 1 src/**/*.mustache dist/",
"build": "npm run copy && tsc",
"build:link": "npm build && npm link",
"test": "echo \"Error: no test specified\" && exit 1"
},
"types": "./types.d.ts",
"bin": {
"bigo": "bin/bigo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabrv/bigo.git"
},
"keywords": [
"framework",
"bigo",
"serverside",
"node",
"javascript",
"nodejs",
"boilerplater"
],
"author": "Fabrizio Delcompare",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabrv/bigo/issues"
},
"homepage": "https://github.com/fabrv/bigo#readme",
"dependencies": {
"minimist": "^1.2.5",
"mustache": "^4.0.1"
},
"devDependencies": {
"@types/mime-types": "^2.1.0",
"@types/minimist": "^1.2.0",
"@types/mustache": "^4.0.1",
"@types/node": "^14.0.22",
"copyfiles": "^2.3.0"
}
}