-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 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
40
{
"name": "react-sourcerer",
"version": "0.0.6",
"description": "A collection of components for working with JavaScript source code in React.",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"build": "babel --ignore __tests__ modules -d dist"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/iammerrick/react-sourcerer.git"
},
"author": "Merrick Christensen",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/iammerrick/react-sourcerer/issues"
},
"homepage": "https://github.com/iammerrick/react-sourcerer#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.3.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"jest": "^18.0.0",
"jest-cli": "^18.1.0",
"react-test-renderer": "^15.4.1",
"webpack": "^2.2.1"
},
"dependencies": {
"babel-traverse": "^6.22.1",
"babel-types": "^6.22.0",
"babylon": "^6.14.1",
"react": "^15.4.1",
"recast": "^0.11.21"
}
}