-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "hiddenDoodle",
"version": "1.0.0",
"description": "doodle",
"main": "index.js",
"scripts": {
"dev": "budo public/index.js -d --serve public/bundle.js --live",
"build": "browserify public/index.js -o public/bundle.js",
"watch": "watchify public/index.js -o public/bundle.js -dv -t babelify",
"start": "npm run watch & nodemon server.js",
"test": "clear && mocha test/setup.js test/**/*.js"
},
"browserify": {
"transform": [
"babelify"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ostigley/hiddenDoodle"
},
"author": "ostigley",
"license": "MIT",
"bugs": {
"url": "https://github.com/ostigley/hiddenDoodle/issues"
},
"homepage": "https://github.com/ostigley/hiddenDoodle",
"dependencies": {
"canvas": "^1.3.16",
"express": "^4.13.4",
"nodemon": "^1.9.2",
"socket.io": "^1.4.6"
},
"devDependencies": {
"babel-preset-airbnb": "^1.0.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.4.3",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"budo": "^8.2.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"gh-pages": "^0.11.0",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"react": "^15.0.1",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.0.1",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"uglifyify": "^3.0.1",
"watchify": "^3.7.0"
}
}