forked from osuushi/Smooth.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 813 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 813 Bytes
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
{
"name": "Smooth.js",
"version": "0.1.7",
"description": "Array interpolation library",
"main": "Smooth.js",
"dependencies": {},
"devDependencies": {
"coffeescript": "^2.3.1",
"jasmine-node": "^1.16.2",
"live-server": "^1.2.0"
},
"scripts": {
"start": "npm run demo",
"compile": "coffee --compile --output lib/ .",
"prepublish": "npm run compile",
"postinstall": "npm run compile",
"test": "jasmine-node --coffee --verbose test/specs/*.coffee",
"sindemo": "coffee sindemo.coffee",
"demo": "live-server . --open=demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StudioProcess/Smooth.js.git"
},
"keywords": [
"interpolation",
"smoothjs",
"smooth.js",
"cubic",
"bicubic"
],
"license": "AGPL-3.0"
}