-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.23 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-test",
"description": "Render large graph using WebGL.",
"author": "Javid Hsueh",
"user": "javidhsueh",
"version": "0.0.1",
"scripts": {
"start": "webpack-dev-server",
"test": "karma start",
"tdd": "karma start --auto-watch --no-single-run",
"gh-pages": "webpack",
"deploy-gh-pages": "node ./lib/deploy_gh_pages.js",
"dist": "webpack",
"dist-min": "webpack",
"dist-modules": "babel ./src --out-dir ./dist-modules",
"lint": "eslint ./src --ext .js --ext .jsx",
"preversion": "npm run test && npm run lint && npm run dist && npm run dist-min && git commit --allow-empty -am \"Update dist\"",
"prepublish": "npm run dist-modules",
"postpublish": "npm run gh-pages && npm run deploy-gh-pages",
"postinstall": "node lib/post_install.js"
},
"main": "dist-modules",
"dependencies": {
"brfs": "^1.4.3",
"get-canvas-context": "^1.0.1",
"gl-buffer": "^2.1.2",
"gl-shader": "^4.2.0",
"glslify": "^5.0.2",
"glslify-loader": "^1.0.2",
"ify-loader": "^1.0.3",
"key-mirror": "^1.0.1",
"keycode": "^2.1.0",
"lodash": "^3.10.1",
"mouse-position": "^2.0.1",
"mouse-pressed": "^1.0.0",
"mouse-wheel": "^1.0.2",
"raw-loader": "^0.5.1",
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.3.0",
"clean-webpack-plugin": "^0.1.3",
"css-loader": "^0.23.0",
"eslint": "^1.6.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.5.1",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.4",
"gh-pages": "^0.8.0",
"git-prepush-hook": "^1.0.1",
"highlight.js": "^9.0.0",
"html-webpack-plugin": "^1.6.2",
"isparta-instrumenter-loader": "^1.0.0",
"json-loader": "^0.5.3",
"karma": "^0.13.10",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.2",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.5",
"karma-spec-reporter": "0.0.23",
"karma-webpack": "^1.7.0",
"markdown-to-react-components": "bebraw/markdown-to-react-components#highlight",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"phantomjs-polyfill": "0.0.1",
"purecss": "^0.6.0",
"react-addons-test-utils": "^0.14.0",
"react-ghfork": "^0.3.2",
"react-transform-hmr": "^1.0.1",
"style-loader": "^0.13.0",
"sync-exec": "^0.6.2",
"system-bell-webpack-plugin": "^1.0.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0",
"webpack-merge": "^0.5.1"
},
"repository": {
"type": "git",
"url": "[email protected]:javidhsueh/react-test.git"
},
"homepage": "https://javidhsueh.github.io/",
"bugs": {
"url": "https://github.com/javidhsueh/react-test/issues"
},
"browserify": {
"transform": [
"glslify",
"brfs"
]
},
"keywords": [
"react",
"reactjs",
"graph",
"gl"
],
"license": "MIT",
"pre-push": [
"test",
"lint"
]
}