-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@malomalo/viking",
"version": "2.0.0-rc8",
"author": "Jonathan Bracy <[email protected]>",
"description": "Viking.js is an open-source web framework for JavaScript. Inspired by Backbone.js & Ruby on Rails; it makes it easier to write client side JavaScript applications.",
"url": "http://vikingjs.com",
"repository": {
"url": "git://github.com/malomalo/viking.git"
},
"keywords": [
"backbone",
"rails",
"activerecord",
"model",
"view",
"controller",
"router",
"server",
"client",
"browser"
],
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.21.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"jsdom": "^21.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"jsdoc": "^4.0.3"
},
"scripts": {
"test": "npx mocha -r @babel/register -r test/testSetup.js test/testHelper.js 'test/**/*Test.js'",
"esdoc": "npx esdoc",
"jsdoc": "npx jsdoc -c jsdoc.json lib/"
},
"dependencies": {
},
"esdoc": {
"source": "./lib",
"destination": "./esdoc",
"plugins": [
{
"name": "esdoc-standard-plugin",
"brand": {
"logo": "./logo.png",
"title": "Viking.js",
"description": "Viking.js is an open-source web framework for JavaScript. Inspired by Backbone.js & Ruby on Rails; it makes it easier to write client side JavaScript applications.",
"repository": "https://github.com/malomalo/viking",
"site": "http://vikingjs.com",
"image": "http://vikingjs.com/logo.png"
}
},
{
"name": "esdoc-ecmascript-proposal-plugin",
"option": {
"all": true
}
}
]
}
}