-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "es6-class-privates",
"version": "0.0.6",
"description": "Provides a method of converting underscored pseudo-private class members into truly private class members",
"main": "./distribution/index.js",
"scripts": {
"lint": "eslint . && echo 'Lint finished...\n'",
"pretest": "npm run -s lint",
"test": "jest source",
"update": "updtr",
"build": "babel source --presets babel-preset-es2015 --out-dir distribution",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dash-/es6-class-privates.git"
},
"keywords": [
"es6 class",
"private",
"private methods",
"private attributes",
"private properties",
"private members",
"protected",
"protected methods",
"protected attributes",
"protected properties",
"protected members"
],
"author": "David Ash",
"license": "MIT",
"bugs": {
"url": "https://github.com/dash-/es6-class-privates/issues"
},
"homepage": "https://github.com/dash-/es6-class-privates#readme",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"updtr": "0.2.1"
}
}