-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 982 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
{
"name": "lasso-caching-fs",
"description": "Caching checks on the file system to avoid I/O overhead",
"repository": {
"type": "git",
"url": "git+https://github.com/lasso-js/lasso-caching-fs.git"
},
"scripts": {
"test": "npm run mocha && npm run jshint",
"mocha": "mocha --ui bdd --reporter spec test/",
"jshint": "jshint src/"
},
"author": "Patrick Steele-Idem <pnidem@gmail.com>",
"maintainers": "Patrick Steele-Idem <pnidem@gmail.com>",
"dependencies": {
"raptor-async": "^1.1.2"
},
"devDependencies": {
"chai": "^3.5.0",
"jshint": "^2.9.1",
"mocha": "^2.4.5"
},
"license": "Apache-2.0",
"bin": {},
"main": "src/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "1.0.2",
"bugs": {
"url": "https://github.com/lasso-js/lasso-caching-fs/issues"
},
"homepage": "https://github.com/lasso-js/lasso-caching-fs#readme",
"directories": {
"test": "test"
}
}