-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
116 lines (116 loc) · 2.89 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "javascript-decorators",
"homepage": "https://github.com/AvraamMavridis/javascript-decorators",
"repository": {
"type": "git",
"url": "https://github.com/AvraamMavridis/javascript-decorators"
},
"version": "1.1.1",
"main": "./index.js",
"author": "Avraam Mavridis <[email protected]>",
"description": "Decorator Helpers",
"scripts": {
"test": "npm run compile && mocha --compilers js:babel-register --require babel-polyfill",
"compile": "babel --presets es2015,stage-0 --require babel-polyfill -d lib/ src/",
"prepublish": "npm run compile",
"watch": "npm-scripts-watcher",
"lint": "eslint ./src --fix",
"semantic-release": "semantic-release && npm publish && semantic-release post"
},
"watch": {
"src/**/*.js": [
"compile"
]
},
"keywords": [
"javascript decorators",
"javascript-decorator",
"javascript decorator",
"javascript-decorators",
"js-decorators",
"core-decorators",
"decorate",
"aspects",
"aop",
"aspect-oriented-programming",
"aspect oriented programming",
"aspects",
"es6",
"es7",
"es2015",
"es2016",
"abstract",
"babel",
"decorators",
"java",
"annotations",
"mixin",
"validateSchema",
"memoization",
"immutable",
"immutability",
"multiple inheritance",
"inheritance",
"extend",
"multiple extend",
"@multiInherit",
"@partiallyInherit",
"@autobind",
"@compose",
"@leftCompose",
"@deprecated",
"@before",
"@after",
"@valuesEqualToNumberOfArguments",
"@overridden",
"@forceoverridden",
"@once",
"@times",
"@timesCalled",
"@trycatch",
"@validateSchema",
"@doesNotMutate",
"@memoization",
"@log",
"@loglocalstorage",
"@donotlog",
"@timeout",
"@defer",
"@enumerable",
"@readony",
"@nonconfigurable",
"@nonenumerable"
],
"license": "ISC",
"dependencies": {
"deep-equal": "^1.0.1",
"deepcopy": "^1.0.0",
"promise": "^8.0.1"
},
"devDependencies": {
"babel": "^6.14.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^9.0.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.16.3",
"chai": "^4.1.2",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-avraam": "^1.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.2.0",
"semantic-release": "^15.9.5",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0"
}
}