-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 2.41 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
56
57
58
59
60
{
"name": "awesome_cart_js",
"version": "1.0.1",
"description": "A javascript shopping cart frontend.",
"main": "src/main.js",
"scripts": {
"demo": "cd demo && node demo.js",
"demo-pm": "cd demo && pm2 start demo.js",
"docs-html": "documentation build src/main.js -f html -o docs",
"docs-readme": "documentation readme src/main.js --section=API",
"dist": "npm run dist-bundle && npm run dist-sa && npm run docs-html && npm run docs-readme",
"dist-bundle": "browserify src/main.js -d -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] --no-comments | uglifyjs -mc warnings=false > dist/awc.bundle.js",
"watch-bundle": "watchify src/main.js -o dist/awc.bundle.js -d -v -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] --no-comments",
"dist-sa": "browserify src/main.js -d -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] -t [ uglifyify ] -p [ tinyify --no-flat ] -g uglifyify --standalone awc --no-comments > dist/awc.standalone.js",
"build-sa": "browserify src/main.js -o dist/awc.standalone.js -d -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] --standalone awc --no-comments",
"watch-sa": "watchify src/main.js -o dist/awc.standalone.js -d -v -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] --standalone awc --no-comments",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DigiThinkIT/AwesomeCartJS.git"
},
"keywords": [
"js",
"ecommerce"
],
"author": "[email protected]",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/DigiThinkIT/AwesomeCartJS/issues"
},
"homepage": "https://github.com/DigiThinkIT/AwesomeCartJS#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babelify": "^10.0.0",
"body-parser": "^1.16.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"express": "^4.14.1",
"express-session": "^1.15.0",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"mocha": "^6.2.0",
"tinyify": "^2.5.1",
"uglifyify": "^5.0.1",
"uuid": "^3.0.1",
"watchify": "^3.11.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"bluebird": "^3.4.7",
"eventemitter2": "^5.0.1",
"handlebars": "^4.0.6",
"lodash": "^4.17.5",
"query-string": "^6.8.2",
"uglify-js": "^3.6.0"
}
}