-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "babel-plugin-locals",
"version": "1.0.1",
"description": "Python-style locals() in JavaScript",
"main": "dist/index.js",
"jsnext:main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha test/main.js",
"build": "babel index.js -d dist",
"build-test": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/active-expressions/babel-plugin-locals.git"
},
"keywords": [
"babel-plugin",
"babel",
"plugin",
"transform",
"locals",
"scope"
],
"author": {
"name": "Stefan Ramson",
"email": "stefan.ramson@gmail.com",
"url": "http://onsetsu.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/active-expressions/babel-plugin-locals/issues"
},
"homepage": "https://github.com/active-expressions/babel-plugin-locals#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"mocha": "2.2.5"
}
}