-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.24 KB
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": "viking",
"version": "2.0.0-rc9",
"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"
},
"main": "lib/index.js",
"type": "module",
"exports": {
".": {
"import": "./lib/viking.js",
"default": "./lib/viking.js"
},
"./*": "./lib/viking/*.js"
},
"keywords": [
"backbone",
"rails",
"activerecord",
"model",
"view",
"controller",
"router",
"server",
"client",
"browser"
],
"devDependencies": {
"highlight.js": "^11.11.1",
"jsdoc": "^4.0.3",
"jsdoc-export-default-interop": "^0.3.1",
"jsdoc-press": "github:bemky/jsdoc-press",
"jsdom": "*",
"jsdom-global": "*",
"mocha": "*",
"nodemon": "^3.1.9",
"sinon": "^19.0.2"
},
"scripts": {
"test": "mocha -r test/testSetup.js test/testHelper.js 'test/**/*Test.js'",
"docs": "jsdoc -c jsdoc.json -u lib",
"docs:watch": "nodemon --watch lib --watch docs --ext js,md,json,css --exec \"npm run docs\""
}
}