-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "babel-plugin-inline-react-es6-modulepath",
"version": "0.0.2",
"description": "Babel transform to add a static property modulePath containing path to the current module",
"repository": {
"type": "git",
"url": "git+https://github.com/KijijiCA/babel-plugin-inline-react-es6-modulepath.git"
},
"author": "Dmitri Farkov <[email protected]> (http://github.com/dmitrif)",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"mocha": "^2.4.5",
"babel-register": "^6.0.0",
"babel-core": "^6.0.0"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"example": "npm run build && babel example/input.js -o example/output.js",
"test": "mocha --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"license": "MIT",
"keywords": [
"babel",
"babel-plugin",
"transform",
"es6",
"classes",
"react",
"modulePath"
]
}