-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "obsidian-project",
"version": "5.0.3",
"description": "Library to manage Wanadev's obsidian projects",
"main": "lib/index.js",
"types": "types/index.d.ts",
"typesVersions": {
"*": { "lib/*": ["types/lib/*"] }
},
"scripts": {
"test": "./node_modules/.bin/grunt test",
"start": "pm2 start -f test/server/server.js --name=obsidian-proxy-server-test --watch && sleep 1",
"stop": "pm2 delete obsidian-proxy-server-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wanadev/obsidian-project.git"
},
"author": "Wanadev <http://www.wanadev.fr/>",
"license": "BSD-3-Clause",
"keywords": [
"obsidian",
"project"
],
"dependencies": {
"abitbol-serializable": "^2.0.1",
"obsidian-file": "^3.0.2",
"obsidian-http-request": "^1.5.1",
"q": "^1.5.1",
"semver": "^7.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"body-parser": "^1.20.2",
"enlightme": "^0.2.0",
"expect.js": "^0.3.1",
"express": "^4.18.2",
"grunt": "^1.6.1",
"grunt-browserify": "^6.0.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-shell": "^4.0.0",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0",
"pm2": "^5.3.0",
"serve-static": "^1.15.0"
},
"enlightme": {
"appName": "Obsidian Project"
}
}