-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "neptune-notebook",
"version": "1.3.1",
"description": "Interactive Notebook for Javascript and Node.js",
"main": "src/neptune.js",
"files": [
"src/**",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint -c .eslint.json .",
"build": "./node_modules/.bin/browserify src/statics/browserify/neptune.js -o src/statics/neptune.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KinanBab/neptune-notebook.js.git"
},
"keywords": [
"interactive",
"notebook",
"browser",
"nodejs"
],
"author": "Kinan Dak Albab",
"license": "MIT",
"bugs": {
"url": "https://github.com/KinanBab/neptune-notebook.js/issues"
},
"homepage": "https://github.com/KinanBab/neptune-notebook.js#readme",
"dependencies": {
"decomment": "^0.9.2",
"express": "^4.17.1",
"nunjucks": "^3.2.0",
"path": "^0.12.7",
"showdown": "^1.9.1"
},
"devDependencies": {
"browserify": "^16.5.0",
"eslint": "^6.4.0",
"eslint-plugin-requirejs": "^4.0.0"
}
}