-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "leajs-cache",
"description": "handles caching of resources",
"version": "0.1.0",
"homepage": "https://github.com/lea-js/leajs-cache",
"author": {
"name": "Paul Pflugradt",
"email": "paul.pflugradt@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/lea-js/leajs-cache"
},
"engines": {
"node": "*"
},
"main": "lib/plugin.js",
"files": [
"lib/*.js"
],
"devDependencies": {
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.1",
"fs-extra": "^6.0.1",
"script-runner": "^0.1.7",
"snapy": "^0.1.3",
"read-conf": "^0.4.3",
"leajs-server": "^0.1.0"
},
"keywords": [],
"readmeFilename": "README.md",
"scripts": {
"build": "coffee --bare --no-header --compile --output lib/ src/*.coffee",
"dev": "npm run build && ./cli.js",
"test": "snapy",
"doc": "toDoc",
"preversion": "npm run test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"chokidar": "^2.0.3"
}
}