-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "genji-notebook",
"version": "0.1.3",
"description": "Interactive JavaScript Notebook.",
"bin": "bin/genji.js",
"repository": {
"type": "git",
"url": "https://github.com/pearmini/genji.git",
"directory": "packages/genji-notebook"
},
"scripts": {
"test": "jest",
"lint": "prettier --write --ignore-unknown .",
"ci": "run-s test lint",
"start": "cd demo && nodemon ../bin/genji.js dev",
"build": "cd demo && ../bin/genji.js build",
"deploy": "cd demo && ../bin/genji.js deploy",
"template": "cd template && ../bin/genji.js dev"
},
"devDependencies": {
"prettier": "2.5.1",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"commander": "^9.0.0",
"file-system": "^2.2.2",
"gh-pages": "^3.2.3",
"nodemon": "^2.0.15",
"object-hash": "^3.0.0"
},
"files": [
"public",
"lib",
"assets",
"bin",
"command"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"license": "MIT"
}