-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 992 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 992 Bytes
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
{
"name": "properties-decorator",
"version": "1.1.0",
"description": "Apply getters and setters with decorators",
"keywords": [
"accessor",
"accessors",
"property",
"properties",
"getter",
"setter",
"decorator",
"class"
],
"main": "lib/index.js",
"scripts": {
"test": "babel-tape-runner test/*.js",
"compile": "echo \"compiling...\" && babel -d lib/ src/",
"lint": "eslint --quiet src/ test/",
"prepublish": "npm run compile && npm run test && npm run lint"
},
"author": {
"name": "Maximiliano Fierro",
"email": "elmasse@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/CocktailJS/properties-decorator.git"
},
"bugs": {
"url": "https://github.com/CocktailJS/properties-decorator/issues"
},
"license": "MIT",
"devDependencies": {
"babel": "^5.6.6",
"babel-eslint": "^3.1.20",
"babel-tape-runner": "^1.1.0",
"eslint": "^0.24.0",
"tap": "^1.3.1"
}
}