This repository was archived by the owner on Dec 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 KB
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
{
"name": "babel-plugin-transform-private-underscore",
"version": "0.1.4",
"description": "Babel plugin to make class properties starting with an underscore really private",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib && rm -rf coverage",
"build": "babel src -d lib",
"test": "jest",
"lint": "eslint .",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"author": "Thibault Derousseaux <tib.dex@gmail.com>",
"license": "MIT",
"keywords": [
"babel",
"babel-plugin",
"transform",
"class",
"underscore",
"private",
"weakmap"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/tibdex/babel-plugin-transform-private-underscore.git"
},
"engines": {
"npm": ">=3.8.6",
"node": ">=6.1.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.10.0",
"eslint-config-airbnb-base": "^10.0.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^17.0.0",
"lodash.isequal": "^4.4.0"
},
"dependencies": {
"babel-register": "^6.14.0",
"babel-template": "^6.14.0",
"babel-types": "^6.14.0"
}
}