-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "react-to-commonjs",
"version": "2.2.32",
"description": "A tool to help you build your React Component and distribute it as a commonJS module.",
"main": "dist/index.js",
"bin": {
"r2c2": "bin/r2c2.js"
},
"repository": {
"type": "git",
"url": "https://github.com/goncalvesjoao/react-to-commonjs"
},
"author": "João Gonçalves",
"license": "MIT",
"bugs": {
"url": "https://github.com/goncalvesjoao/react-to-commonjs/issues"
},
"homepage": "https://github.com/goncalvesjoao/react-to-commonjs#readme",
"keywords": [
"react",
"react-component",
"commonjs",
"standalone",
"react-hot-loader",
"webpack",
"browser-sync"
],
"devDependencies": {
"babel": "5.8.23",
"eslint": "1.6.0",
"babel-eslint": "4.1.3",
"eslint-plugin-react": "3.5.1"
},
"dependencies": {
"lodash": "3.10.1",
"fs-extra": "0.24.0",
"commander": "2.8.1",
"isbinaryfile": "3.0.0"
},
"scripts": {
"build": "rm -rf ./dist && ./node_modules/.bin/babel ./src/ --out-dir ./dist/",
"lint": "./node_modules/.bin/eslint ./src/ ./test/",
"start": "npm run lint && ./node_modules/.bin/babel --watch ./src/ --out-dir ./dist/"
}
}