-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
{
"name": "kinann-rest",
"version": "0.4.0",
"description": "RestBundle is a Javascript base class for a REST resource bundles that can be plugged into a nodejs express application",
"main": "index.js",
"directories": {
"test": "test",
"dist": "dist",
"src": "src",
"doc": "doc"
},
"dependencies": {
"drive-frame": "^0.9.1",
"rest-bundle": "^0.20.4"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-latest": "^6.0.0",
"concurrently": "^3.2.0",
"cross-env": "^3.0.0",
"css-loader": "^0.28.0",
"mocha": "^3.2.0",
"should": "^11.2.0",
"supertest": "^3.0.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.2.0"
},
"scripts": {
"build": "bash scripts/build",
"build:vue": "npm run build:vue-dev && npm run build:vue-service",
"build:vue-dev": "cross-env NODE_ENV=production webpack --config cfg/webpack.dev.js --progress --hide-modules",
"build:vue-service": "cross-env NODE_ENV=production webpack --config cfg/webpack.service.js --progress --hide-modules",
"clean": "rm -f *.log*; rimraf dist",
"dev": "concurrently \"scripts/server.js test aloha\" \"npm run dev:vue\"",
"dev:debug": "concurrently \"scripts/server.js --log-debug test aloha\" \"npm run dev:vue\"",
"dev:vue": "cross-env NODE_ENV=development webpack-dev-server --config cfg/webpack.dev.js --hot",
"start": "scripts/server.js ",
"test": "npm run test:verbose",
"test:test": "mocha -w -R min --inline-diffs -g TEST",
"test:verbose": "mocha --inline-diffs",
"test:watch": "mocha -w --inline-diffs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firepick/rest-bundle.git"
},
"bin": {},
"keywords": [
"REST",
"resource bundle",
"express",
"FirePick",
"firenodejs"
],
"author": "Karl Lew",
"license": "MIT",
"bugs": {
"url": "https://github.com/firepick/rest-bundle/issues"
},
"homepage": "https://github.com/firepick/rest-bundle"
}