-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 945 Bytes
/
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
{
"name": "tabula-rasa",
"version": "1.0.8",
"description": "Node.js SDK for IIIF Presentation API",
"main": "dist/index.js",
"scripts": {
"dev": "babel-node src/index.js",
"lint": "eslint src/**/*.js",
"compile": "babel --stage 0 -d dist/ src/",
"prepublish": "npm run compile",
"test": "babel-node node_modules/argg src/test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sdellis/tabula-rasa"
},
"keywords": [
"module",
"npm",
"iiif",
"babel",
"es6",
"tape"
],
"author": "shaun@sdellis.com",
"license": "MIT",
"devDependencies": {
"babel-polyfill": "^6",
"argg": "0.0.2",
"babel": "^5",
"babel-eslint": "^4.1.0",
"eslint": "^1.2.1",
"tape": "^4.2.0"
},
"dependencies": {
"ampersand-collection": "^1.5.0",
"ampersand-model": "^6.0.2",
"ampersand-rest-collection": "^5.0.0",
"node-uuid": "^1.4.7"
}
}