-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "react-decompiler",
"version": "0.2.1",
"description": "Decompile react components back into jsx format",
"repository": {
"type": "git",
"url": "https://github.com/rogeriochaves/react-decompiler.git"
},
"main": "index.js",
"scripts": {
"test": "node_modules/karma/bin/karma start karma.conf.js",
"prepublish": "mkdir dist; node_modules/babel/bin/babel.js src/decompiler.js --out-file dist/decompiler.js; node_modules/babel/bin/babel.js src/stringify-object.js --out-file dist/stringify-object.js"
},
"author": {
"name": "Rogério Chaves",
"url": "https://github.com/rogeriochaves"
},
"license": "MIT",
"devDependencies": {
"babel": "^5.8.23",
"babelify": "^6.3.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-babel-preprocessor": "^5.2.2",
"karma-browserify": "^4.3.0",
"karma-jasmine": "*",
"karma-phantomjs-launcher": "*",
"phantomjs": "^1.9.18",
"phantomjs-polyfill": "0.0.1",
"react": "^0.14.1"
},
"dependencies": {
"is-plain-obj": "^1.0.0",
"is-regexp": "^1.0.0",
"js-beautify": "^1.5.10",
"object-assign": "^4.0.1",
"react-addons-test-utils": "^0.14.1"
}
}