-
Notifications
You must be signed in to change notification settings - Fork 309
/
package.json
82 lines (82 loc) · 4.28 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"author": "xTuple <dev@xtuple.com>",
"name": "xtuple",
"description": "xTuple Enterprise Resource Planning Mobile-Web client",
"version": "4.9.0-beta",
"repository": {
"type": "git",
"url": "https://github.com/xtuple/xtuple.git"
},
"dependencies": {
"async": "0.2.x",
"backbone": "0.9.10",
"backbone-relational": "0.8.0",
"bcrypt": "^0.8.0",
"bower": "^1.3.12",
"colors": "0.6.x",
"commander": "1.2.x",
"congruence": "~1.2.4",
"connect-ensure-login": "0.1.x",
"ejs": "0.8.x",
"express": "3.1.x",
"fluentreports": "git://github.com/xtuple/fluentreports.git",
"json-patch": "git://github.com/xtuple/JSON-Patch.git",
"less": "1.5.0",
"moment": "2.4.x",
"node-forge": "0.6.x",
"nodemailer": "0.3.x",
"npm": "1.4.x",
"oauth2orize": "0.1.x",
"oauth2orize-jwt-bearer": "0.1.x",
"passport": "0.1.x",
"passport-http": "0.2.x",
"passport-http-bearer": "0.2.x",
"passport-local": "0.1.x",
"passport-oauth2-client-password": "0.1.x",
"passport-oauth2-jwt-bearer": "0.1.x",
"paynode": "0.3.6",
"pg": "0.14.x",
"qr-image": "1.1.x",
"request": "2.14.x",
"rimraf": "2.2.x",
"rjson": "~0.2.4",
"socket.io": "0.9.x",
"underscore": "1.4.x",
"underscore.string": "~2.3.3",
"winston": "0.7.x",
"xtuple-linguist": "0.1.x"
},
"devDependencies": {
"chai": "1.5.x",
"mocha": "1.9.x",
"html5": "0.3.13",
"jshint": "2.4.x",
"zombie": "1.4.x",
"nodemon": "~1.0.15",
"csslint": "~0.10.0"
},
"optionalDependencies": {
"xtuple-query": "~1.0.0",
"googleapis": "~0.4.6"
},
"engines": {
"node": "0.10.32"
},
"main": "node-datasource/main.js",
"scripts": {
"build-basic-postbooks-package-sql": "./scripts/explode_manifest.js -m foundation-database/manifest.js -n postbooks_upgrade.sql",
"build-basic-empty": "./scripts/build_app.js -d empty --databaseonly -e foundation-database -i -s foundation-database/empty_data.sql",
"build-basic-postbooks-demo": "./scripts/build_app.js -d postbooks_demo --databaseonly -e foundation-database -i -s foundation-database/postbooks_demo_data.sql",
"build-basic-quickstart": "./scripts/build_app.js -d quickstart --databaseonly -e foundation-database -i -s foundation-database/quickstart_data.sql",
"jshint": "./node_modules/.bin/jshint --exclude node-datasource/lib/query/node_modules lib/backbone-x/source lib/enyo-x/source lib/tools/source enyo-client/application/source/ enyo-client/extensions node-datasource",
"jsdoc-api": "rm -rf scripts/output;./node_modules/xtuple-documentation/node_modules/jsdoc/jsdoc -t ./node_modules/xtuple-documentation/jsdoc-setup/api-templates -c ./node_modules/xtuple-documentation/jsdoc-setup/jsdoc.conf.json -d ./scripts/output -r ./lib/backbone-x/source ./lib/tools/source ./lib/enyo-x/source/widgets ./lib/enyo-x/source/views ./lib/enyo-x/source/app.js ./lib/enyo-x/source/core.js ./node_modules/xtuple-documentation/jsdoc-setup/api-readme.md",
"jsdoc-specs": "rm -rf scripts/output/*;mkdir scripts/output/tech-specs;./node_modules/xtuple-documentation/node_modules/jsdoc/jsdoc -t ./node_modules/xtuple-documentation/jsdoc-setup/spec-templates -c ./node_modules/xtuple-documentation/jsdoc-setup/jsdoc.conf.json -d ./scripts/output/tech-specs/ -r ./test/specs ./node_modules/xtuple-documentation/jsdoc-setup/tech-specs-readme.md;mkdir scripts/output/user-specs;./node_modules/xtuple-documentation/node_modules/jsdoc/jsdoc -t ./node_modules/xtuple-documentation/jsdoc-setup/spec-templates -c ./node_modules/xtuple-documentation/jsdoc-setup/jsdoc-user.conf.json -d ./scripts/output/user-specs/ -r ./test/specs ./node_modules/xtuple-documentation/jsdoc-setup/user-specs-readme.md;",
"preinstall": "cd node-datasource/lib/query ; npm install",
"postinstall": "bower install --config.interactive=false --allow-root",
"start": "node_modules/.bin/nodemon node-datasource/main.js --debug --watch node-datasource",
"test-build": "./node_modules/.bin/mocha -R spec test/build/build_app.js",
"test": "./node_modules/.bin/mocha -R spec test/lib/login.js test/models/* test/database/* test/extensions/* test/lib/test_runner.js",
"test-datasource": "./node_modules/.bin/mocha -R spec test/routes/*",
"test-database": "./node_modules/.bin/mocha -R spec test/database/*"
}
}