-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 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
65
66
67
68
69
70
71
72
73
{
"name": "refrax",
"version": "0.7.5",
"description": "A framework for building api-based data-driven applications.",
"author": "Joshua Hollenbeck",
"license": "BSD-3-Clause",
"keywords": [
"data",
"partial",
"api",
"react",
"refrax",
"rest"
],
"bugs": "https://github.com/netarc/refrax/issues",
"files": [
"LICENSE",
"README.md",
"dist/",
"lib/"
],
"main": "lib/refrax.js",
"typings": "lib/refrax.d.ts",
"scripts": {
"build": "gulp",
"lint": "tslint -p . -c tslint.json",
"test": "gulp test",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/netarc/refrax.git"
},
"dependencies": {
"axios": "^0.16.2",
"bluebird": "^3.5.0",
"eventemitter3": "^2.0.3",
"pluralize": "^5.0.0",
"tslib": "^1.8.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.16",
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.44",
"@types/pluralize": "0.0.28",
"@types/sinon": "^2.3.6",
"ansi-styles": "^3.2.0",
"babel-core": "^6.26.0",
"babel-plugin-module-resolver": "^3.0.0",
"chai": "^4.1.2",
"del": "^3.0.0",
"eslint": "^4.2.0",
"gulp": "^3.9.0",
"gulp-babel": "^7.0.0",
"gulp-derequire": "^2.1.0",
"gulp-header": "^1.8.9",
"gulp-mocha": "^4.3.1",
"gulp-sourcemaps": "^2.6.1",
"gulp-typescript": "^3.2.3",
"gulp-util": "^3.0.8",
"mocha": "^4.0.1",
"run-sequence": "^2.2.0",
"sinon": "^4.0.1",
"source-map-support": "^0.5.0",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.7.0-dev.20171028",
"webpack": "^3.7.1",
"webpack-stream": "^4.0.0"
},
"peerDependencies": {}
}