-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
53 lines (53 loc) · 1.05 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
{
"name": "duoshuo",
"version": "0.4.0",
"description": "a duoshuo SDK in Node.js",
"main": "dist/duoshuo.js",
"scripts": {
"build": "node_modules/.bin/babel libs --out-dir dist --source-maps --watch",
"test": "node_modules/mocha/bin/mocha test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/turingou/duoshuo"
},
"keywords": [
"duoshuo",
"social-network",
"bbs",
"forum"
],
"author": "turing <[email protected]>",
"contributors": [
{
"name": "turing",
"email": "[email protected]"
},
{
"name": "shen2",
"email": "[email protected]"
}
],
"maintainers": [
{
"name": "turing",
"email": "[email protected]"
},
{
"name": "shen2",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/turingou/duoshuo/issues"
},
"dependencies": {
"sdk": "0.4.0"
},
"devDependencies": {
"babel": "^5.6.23",
"mocha": "^2.2.5",
"should": "^7.0.2"
}
}