forked from thePullers/clientSide
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "election_tweets",
"version": "1.0.0",
"description": "compares trump clinton tweets",
"main": "index.js",
"scripts": {
"start": "budo . -d --serve bundle.js --live",
"build": "browserify . -o bundle.js -g uglifyify",
"test": "browserify test/index.js | node | tap-spec",
"dist": "mkdir -p dist && bash -c 'cp *.{js,html,css} dist' && cp -R images dist",
"push": "gh-pages -d dist",
"deploy": "npm run build && npm run dist && npm run push"
},
"browserify": {
"transform": [
"babelify"
]
},
"repository": {
"type": "git",
"url": "https://github.com/JasmineGWT/election_tweets"
},
"author": "JasmineGWT",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasmineGWT/election_tweets/issues"
},
"homepage": "https://github.com/JasmineGWT/election_tweets",
"dependencies": {
"hyperscript": "^2.0.2",
"superagent": "^2.3.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"budo": "^8.2.0",
"gh-pages": "^0.11.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"uglifyify": "^3.0.1",
"watchify": "^3.7.0"
}
}