forked from FormidableLabs/babel-plugin-transform-define
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (55 loc) · 1.85 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
{
"name" : "babel-plugin-transform-define",
"description" : "Babel plugin that replaces member expressions and typeof statements with strings",
"version" : "1.3.0",
"contributors": [
"Eric Baer <[email protected]> (https://github.com/baer)",
"Michael Jackson <[email protected]> (https://github.com/mjackson)",
"Andy Edwards <[email protected]> (https://github.com/jedwards1211)"
],
"homepage" : "https://github.com/FormidableLabs/babel-plugin-transform-define",
"bugs": {
"url": "https://github.com/FormidableLabs/babel-plugin-transform-define/issues"
},
"repository" : "git://github.com/FormidableLabs/babel-plugin-transform-define.git",
"private" : false,
"dependencies": {
"lodash" : "4.17.4",
"traverse" : "0.6.6"
},
"devDependencies": {
"assert-transform" : "^1.0.0",
"babel-core" : "^6.13.2",
"babel-cli" : "^6.6.5",
"babel-eslint" : "6.1.2",
"babel-preset-es2015" : "^6.6.0",
"eslint-config-formidable" : "3.0.0",
"eslint-plugin-filenames" : "1.1.0",
"eslint-plugin-import" : "1.13.0",
"eslint" : "3.19.0",
"mocha" : "^3.0.2",
"rimraf" : "^2.5.2"
},
"main" : "lib",
"scripts": {
"build": "babel ./src -d lib",
"check": "npm run clean && npm run build && npm run test && npm run lint",
"clean": "rimraf lib/",
"lint": "eslint src",
"prepublish": "npm run clean && npm run build",
"release": "node ./scripts/release.js",
"test": "mocha ./test/index.js"
},
"engines":{
"node": ">= 4.x.x"
},
"license" : "MIT",
"keywords": [
"babel-plugin",
"babel-transform",
"babel",
"define",
"DefinePlugin",
"webpack"
]
}