-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
{
"name": "ironwing",
"version": "0.8.3",
"description": "Ironwing is a lightweight front-end data library for model like data representations",
"main": "dist/index.js",
"scripts": {
"prepublish": "babel src --presets babel-preset-es2015 --out-dir dist",
"pretest": "json-server json/data.js > /dev/null 2>&1 &",
"test": "mocha --compilers js:babel/register && gulp lint",
"posttest": "pkill -f json-server > /dev/null 2>&1 &",
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"start": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/andrei-cacio/ironwing.git"
},
"keywords": [
"Model",
"MVC",
"Data",
"Data Layer",
"Persistence",
"Persistence Layer",
"REST",
"CRUD"
],
"author": "Andrei Cacio",
"license": "GNU v2.0",
"bugs": {
"url": "https://github.com/andrei-cacio/ironwing/issues"
},
"homepage": "https://github.com/andrei-cacio/ironwing",
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.33",
"babelify": "^6.4.0",
"browserify": "^11.2.0",
"chai": "^3.3.0",
"gulp": "^3.8.11",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.5.2",
"gulp-header": "^1.2.2",
"gulp-jshint": "^1.10.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.4.1",
"gulp-uglifyjs": "^0.6.2",
"gulp-webserver": "^0.9.1",
"jshint-stylish": "^1.0.1",
"json-server": "^0.8.8",
"lodash": "^3.10.1",
"mocha": "^2.3.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.5.0"
},
"dependencies": {
"lodash": "^3.10.1",
"q": "^1.4.1",
"request": "^2.69.0"
},
"jsonTestServer": "http://localhost:3000"
}