This repository has been archived by the owner on Apr 22, 2018. It is now read-only.
forked from Weka2015-Projects/jvsc-client
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "shopping-cart",
"version": "1.0.0",
"description": "shopping cart",
"main": "index.js",
"scripts": {
"start": "budo . -t babelify -d --serve bundle.js --live",
"build": "browserify . -t babelify -o bundle.js -g uglifyify",
"test": "mocha --opts ./test/mocha.opts \"./test/**/*.@(js|jsx)\"",
"dist": "mkdir -p dist && bash -c 'cp *.{js,html,css} dist'",
"push": "gh-pages -d dist",
"deploy": "npm run build && npm run dist && npm run push"
},
"browserify": {
"transform": []
},
"repository": {
"type": "git",
"url": "https://github.com/joshuavial/shopping-cart"
},
"author": "joshuavial",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshuavial/shopping-cart/issues"
},
"homepage": "https://github.com/joshuavial/shopping-cart",
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^10.0.0",
"budo": "^4.0.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.3.0",
"enzyme": "^1.5.0",
"gh-pages": "^0.3.0",
"history": "^2.0.0",
"immutable": "^3.7.6",
"mocha": "^2.4.5",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"react-router": "^1.0.3",
"redux": "^3.3.1",
"smokestack": "^3.3.0",
"tap-spec": "^4.0.2",
"tape": "^4.0.0",
"uglifyify": "^3.0.1",
"watchify": "^3.1.0"
}
}