-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 944 Bytes
/
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
{
"name": "es2015-default-class-properties",
"version": "1.0.0",
"description": "Add inheritable default properties to your ES2015 classes! Inherit from this base class and make sure every instance created has the same default values set on it before your constructor runs.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --ui qunit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epicmiller/es2015-default-class-properties.git"
},
"keywords": [
"es2015",
"es2016",
"class",
"properties"
],
"author": "Adam Miller",
"license": "MIT",
"bugs": {
"url": "https://github.com/epicmiller/es2015-default-class-properties/issues"
},
"homepage": "https://github.com/epicmiller/es2015-default-class-properties#readme",
"dependencies": {},
"devDependencies": {
"mocha": "^2.4.5",
"chai": "^3.5.0"
},
"engines": {
"node": ">=3.0.0"
}
}