forked from aosabook/500lines
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 949 Bytes
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
{
"name": "spreadsheet",
"version": "0.0.1",
"main": "index.js",
"description": "Web Spreadsheet in 99 lines",
"keywords": [
"web",
"spreadsheet"
],
"author": {
"name": "Audrey Tang",
"email": "[email protected]",
"twitter": "audreyt"
},
"homepage": "https://github.com/audreyt/500lines",
"bugs": {
"url": "http://github.com/audreyt/500lines/issues",
"email": "[email protected]"
},
"license": {
"type": "Public Domain",
"url": "https://creativecommons.org/publicdomain/zero/1.0/"
},
"repository": {
"type": "git",
"url": "http://github.com/audreyt/500lines.git"
},
"dependencies": {
"mocha": "*",
"react": "^0.12.1",
"static-here": "*",
"traceur": "0.0.66"
},
"devDependencies": {
"livescript-loader": "^0.1.2",
"react-hot-loader": "^0.5.0",
"webpack": "^1.4.13",
"webpack-dev-server": "^1.6.6",
"worker-loader": "^0.5.7"
}
}