UNPKG

2.43 kBJSONView Raw
1{
2 "name": "fortune",
3 "description": "Non-native graph database abstraction layer for Node.js and web browsers.",
4 "version": "5.5.13",
5 "license": "MIT",
6 "homepage": "http://fortune.js.org",
7 "repository": {
8 "type": "git",
9 "url": "git@github.com:fortunejs/fortune.git"
10 },
11 "bugs": "https://github.com/fortunejs/fortune/issues",
12 "scripts": {
13 "coverage": "istanbul cover test",
14 "deploy": "./website/deploy.sh",
15 "build": "node website/build; npm run build:messages; npm run build:browser; npm run build:minified",
16 "build:messages": "messageformat -n module.exports lib/common/messages/en.json > lib/common/messages/en.js",
17 "build:browser": "(node lib/header; browserify lib/global.js) > dist/fortune.js",
18 "build:minified": "(node lib/header; cat dist/fortune.js | uglifyjs -cm) > dist/fortune.min.js",
19 "lint": "eslint lib",
20 "prepare": "npm run test; npm run build",
21 "postpublish": "npm run deploy; npm run tag",
22 "tag": "git tag `npm v fortune version`; git push origin --tags",
23 "test": "npm run lint; npm run test:server; npm run test:browser",
24 "test:server": "node test | tf-dot",
25 "test:browser": "browserify test/browser.js | tape-run | tf-dot"
26 },
27 "dependencies": {
28 "error-class": "^2.0.2",
29 "event-lite": "^0.1.2"
30 },
31 "devDependencies": {
32 "@tap-format/dot": "^0.3.0",
33 "bluebird": "^3.5.2",
34 "browserify": "^16.2.3",
35 "caniuse-db": "^1.0.30000890",
36 "chalk": "^2.4.1",
37 "cssnano": "^4.1.4",
38 "doc-tree": "^0.12.2",
39 "eslint": "^5.6.1",
40 "eslint-config-boss": "^1.0.6",
41 "fortune-http": "^1.2.13",
42 "fortune-ws": "^1.0.4",
43 "highlight.js": "^9.12.0",
44 "html-minifier": "^3.5.20",
45 "inflection": "^1.12.0",
46 "istanbul": "^0.4.5",
47 "marked": "^0.5.1",
48 "messageformat": "^2.0.4",
49 "messageformat-cli": "^2.0.2",
50 "mkdirp": "^0.5.1",
51 "mustache": "^3.0.0",
52 "normalize.css": "^8.0.0",
53 "postcss": "^7.0.5",
54 "postcss-cssnext": "^3.1.0",
55 "postcss-import": "^12.0.0",
56 "rimraf": "^2.6.2",
57 "tapdance": "^5.1.1",
58 "tape-run": "^4.0.0",
59 "uglify-js": "^3.4.9"
60 },
61 "files": [
62 "lib/",
63 "dist/*.js",
64 "test/",
65 "LICENSE"
66 ],
67 "main": "lib/index.js",
68 "eslintConfig": {
69 "extends": "boss/es5"
70 },
71 "eslintIgnore": [
72 "lib/common/messages/*.js"
73 ],
74 "keywords": [
75 "database",
76 "adapter",
77 "data",
78 "model",
79 "record"
80 ]
81}