-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "log-decorator",
"version": "1.1.3",
"author": "Jordi López <jlopezxs@gmail.com>",
"description": "Log decorator",
"license": "Apache-2.0",
"main": "index.js",
"homepage": "https://github.com/jlopezxs/log-decorator",
"files": [
"src",
"lib",
"index.js"
],
"keywords": [
"es6",
"log",
"decorator"
],
"scripts": {
"lint": "eslint src/**/*.js spec/**/*.spec.js",
"test": "jasmine",
"prebuild": "npm run test",
"build": "rimraf 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-eslint": "^10.0.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",
"intercept-stdout": "^0.1.2",
"jasmine": "^3.3.1",
"rimraf": "^2.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlopezxs/log-decorator.git"
},
"bugs": {
"url": "https://github.com/jlopezxs/log-decorator/issues"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-decorators-legacy"
]
},
"dependencies": {}
}