-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "memory-cache-decorator",
"version": "1.2.0",
"author": "Jordi López <[email protected]>",
"description": "Memory cache decorator",
"license": "Apache-2.0",
"main": "index.js",
"homepage": "https://github.com/jlopezxs/memory-cache-decorator",
"files": [
"src",
"lib",
"index.js"
],
"keywords": [
"es6",
"cache",
"decorator"
],
"scripts": {
"lint": "eslint src/**/*.js spec/**/*.spec.js",
"test": "jasmine",
"prebuild": "npm run test",
"build": "rm -rf lib && babel src -d lib --source-maps",
"prerelease": "npm run build",
"release": "npm version -m \"New version: %s\"",
"postrelease": "npm run push && npm publish",
"push": "git push origin master"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jasmine": "^1.8.1",
"jasmine": "^2.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlopezxs/memory-cache-decorator.git"
},
"bugs": {
"url": "https://github.com/jlopezxs/memory-cache-decorator/issues"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-decorators-legacy"
]
},
"dependencies": {
"md5-hex": "^2.0.0"
}
}