-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@hexeo/decorator-memory-cache",
"version": "1.0.0",
"description": "Decorator for caching function result in memory",
"keywords": [],
"homepage": "https://www.hexeo.be",
"bugs": {
"url": "https://github.com/heXeo/node-decorator-memory-cache/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "heXeo SPRL <[email protected]>",
"contributors": [
"Leandre Gohy <[email protected]>"
],
"main": "lib/MemoryCache.js",
"repository": {
"type": "git",
"url": "https://github.com/heXeo/node-decorator-memory-cache.git"
},
"scripts": {
"compile": "babel --optional runtime -d lib/ src/",
"lint": "semistandard --verbose | snazzy",
"mocha": "mocha --opts ./test/mocha.opts 'test/**/*.spec.js'",
"prepublish": "npm test && npm run compile",
"pretest": "npm run lint",
"test": "npm run mocha"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"mocha": "^2.3.3",
"semistandard": "*",
"sinon": "^1.17.1",
"snazzy": "^2.0.1"
},
"dependencies": {
"@hexeo/decorator-hook": "^1.0.1",
"babel-runtime": "^5.8.25",
"lodash": "^3.10.1",
"memory-cache": "^0.1.4"
},
"private": false,
"publishConfig": {
"access": "public"
},
"semistandard": {
"parser": "babel-eslint",
"ignore": [
"/lib"
],
"globals": [
"describe",
"it",
"expect",
"beforeEach",
"afterEach",
"sinon"
]
},
"babel": {
"stage": 0
}
}