This repository has been archived by the owner on Jun 19, 2019. It is now read-only.
forked from fortunejs/fortune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.65 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "fortune",
"description": "High-level I/O for web applications.",
"version": "1.1.0",
"license": "MIT",
"author": {
"email": "[email protected]",
"url": "http://0x8890.com"
},
"homepage": "http://fortunejs.com",
"repository": {
"type": "git",
"url": "[email protected]:fortunejs/fortune.git"
},
"bugs": "https://github.com/fortunejs/fortune/issues",
"scripts": {
"clean": "rimraf dist/lib dist/test coverage",
"coverage": "babel-node $(npm bin)/isparta cover --report html test",
"deploy": "npm run publish",
"deploy:website": "npm run build:website && ./website/deploy.sh",
"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",
"build:website": "babel-node website/build",
"lint": "eslint lib test website",
"prepublish": "not-in-install && npm run clean && npm run build",
"postpublish": "npm run deploy:website",
"test": "npm run lint && npm run test:server && npm run test:browser",
"test:server": "npm run build && node dist/test | tap-dot",
"test:browser": "browserify test/browser.js | tape-run -b firefox | tap-dot",
"test:website": "npm run build:website && http-server -p 8890 dist/web"
},
"dependencies": {
"array-buffer": "^1.0.2",
"babel-runtime": "^5.8.20",
"chalk": "^1.1.0",
"clone": "^1.0.2",
"deep-equal": "^1.0.0",
"error-class": "^1.0.5",
"negotiator": "^0.5.3",
"node-fetch": "^1.3.2",
"tapdance": "^3.0.5",
"ws": "^0.7.2"
},
"devDependencies": {
"babel": "^5.8.21",
"babelify": "^6.1.3",
"browserify": "^11.0.1",
"cssnext": "^1.8.3",
"docchi": "^0.10.5",
"eslint": "^1.1.0",
"highlight.js": "^8.7.0",
"html-minifier": "^0.7.2",
"http-server": "^0.8.0",
"in-publish": "^2.0.0",
"isparta": "^3.0.3",
"marked": "^0.3.5",
"mkdirp": "^0.5.1",
"mustache": "^2.1.3",
"myth": "^1.5.0",
"normalize.css": "^3.0.3",
"rimraf": "^2.4.2",
"tap-dot": "^1.0.0",
"tape-run": "^1.1.0"
},
"files": [
"dist/lib",
"dist/test",
"lib/",
"test/",
"LICENSE"
],
"main": "dist/lib/index.js",
"babel": {
"ignore": [
"test/adapter.js",
"test/harness.js",
"test/http.js"
],
"nonStandard": false,
"optional": [
"runtime"
]
},
"browser": "dist/lib/browser.js",
"browserify": {
"transform": [
"babelify"
]
},
"engines": {
"node": ">=0.12"
},
"keywords": [
"adapter",
"api",
"data",
"http",
"hypermedia",
"rest",
"serializer"
]
}