-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
44
{
"name": "jsxgraph-react",
"version": "0.0.3",
"description": "React component library for composing JSXGraph boards",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rsimp/jsxgraph-react.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rsimp/jsxgraph-react/issues"
},
"scripts": {
"test": "jest --config=jestConfig.json",
"build": "npm run build:babel && npm run build:copy-files",
"build:babel": "babel ./src --ignore *.spec.js --out-dir ./build",
"build:copy-files": "babel-node ./scripts/copy-files.js"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.7.6",
"babel-jest": "^12.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"fs-extra": "^0.30.0",
"jest-cli": "^12.1.1",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.3.0",
"webpack": "^1.13.1"
},
"dependencies": {
"core-decorators": "^0.12.2",
"lodash": "^4.11.1"
}
}