This repository has been archived by the owner on Jun 19, 2019. It is now read-only.
forked from fortunejs/fortune-micro-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.43 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
{
"name": "fortune-micro-api",
"description": "Micro API serializer for Fortune.",
"version": "1.0.1",
"license": "MIT",
"author": {
"email": "[email protected]",
"url": "http://0x8890.com"
},
"repository": {
"type": "git",
"url": "[email protected]:fortunejs/fortune-micro-api.git"
},
"bugs": "https://github.com/fortunejs/fortune-micro-api/issues",
"scripts": {
"clean": "rimraf dist/lib dist/test",
"build": "npm run build:lib && npm run build:test",
"build:lib": "mkdirp dist/lib && babel lib --out-dir dist/lib",
"build:test": "mkdirp dist/test && babel test --out-dir dist/test",
"prepublish": "npm run clean && npm run build",
"test": "npm run test:lint && npm run build && node dist/test",
"test:lint": "eslint lib test"
},
"dependencies": {
"babel-runtime": "^5.8.20",
"inflection": "^1.7.1",
"uri-templates": "^0.1.7"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.5",
"eslint": "^1.1.0",
"fortune": "^1.0.0-rc.12",
"mkdirp": "^0.5.1",
"rimraf": "^2.4.2"
},
"files": [
"dist/lib",
"dist/test",
"lib/",
"test/",
"LICENSE"
],
"main": "dist/lib/index.js",
"babel": {
"nonStandard": false,
"optional": [
"runtime"
]
},
"engines": {
"node": ">=0.12"
},
"keywords": [
"micro",
"api",
"fortune",
"http",
"hypermedia",
"rest",
"serializer"
]
}