-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 887 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@digipost/scene.js",
"author": "Olav Bjørkøy",
"version": "2.1.6",
"description": "Scene.js is a small JavaScript library for rendering view models. A view consists of a JS object (the model), an HTML file (the template), and an object with properties (the data). Scene.js takes care of loading the template, compiling it with the model, and adds a few helpful methods.",
"main": "scene.js",
"scripts": {
"release": "npm run verify:not-published",
"verify:not-published": "! npm show . versions -s --json | grep -q \\\"${npm_package_version}\\\"",
"test": "karma start --single-run"
},
"license": "MIT",
"devDependencies": {
"karma": "^6.4.4",
"karma-chrome-launcher": "3.1.1",
"karma-mocha": "^2.0.1",
"mocha": "^10.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digipost/scene.js.git"
}
}