-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
85 lines (85 loc) · 2.47 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
{
"name": "fortune",
"description": "Non-native graph database abstraction layer for Node.js and web browsers.",
"version": "5.5.19",
"license": "MIT",
"homepage": "http://fortune.js.org",
"repository": {
"type": "git",
"url": "[email protected]:fortunejs/fortune.git"
},
"bugs": "https://github.com/fortunejs/fortune/issues",
"scripts": {
"coverage": "istanbul cover test",
"deploy": "./website/deploy.sh",
"build": "node website/build.js && npm run build:messages && npm run build:browser && npm run build:minified",
"build:messages": "messageformat -n module.exports lib/common/messages/en.json > lib/common/messages/en.js",
"build:browser": "(node lib/header && browserify lib/global.js) > dist/fortune.js",
"build:minified": "(node lib/header && cat dist/fortune.js | uglifyjs -cm) > dist/fortune.min.js",
"lint": "eslint lib",
"prepublishOnly": "npm run test && npm run build",
"postpublish": "npm run deploy && npm run tag",
"tag": "git tag `npm v fortune version` && git push origin --tags",
"test": "npm run lint && npm run test:server && npm run test:browser",
"test:server": "node test | tf-dot",
"test:browser": "browserify test/browser.js | tape-run | tf-dot"
},
"dependencies": {
"error-class": "^2.0.2",
"event-lite": "^0.1.3"
},
"devDependencies": {
"@tap-format/dot": "^0.3.0",
"bluebird": "^3.7.2",
"browserify": "^17.0.0",
"caniuse-db": "^1.0.30001588",
"chalk": "^4.1.1",
"cssnano": "^6.0.3",
"doc-tree": "^0.14.0",
"eslint": "^8.56.0",
"eslint-config-boss": "^1.0.6",
"fortune-http": "^1.2.26",
"fortune-ws": "^1.0.4",
"highlight.js": "^11.9.0",
"html-minifier": "^4.0.0",
"inflection": "^3.0.0",
"istanbul": "^0.4.5",
"marked": "^12.0.0",
"messageformat": "^2.3.0",
"messageformat-cli": "^2.1.1",
"mkdirp": "^3.0.1",
"mustache": "^4.2.0",
"normalize.css": "^8.0.1",
"postcss": "^8.3.0",
"postcss-import": "^16.0.1",
"reserved-words": "^0.1.2",
"rimraf": "^5.0.5",
"tapdance": "^5.1.1",
"tape-run": "^11.0.0",
"uglify-js": "^3.17.4"
},
"overrides": {
"diff": "^5.2.0",
"minimist": "^0.2.4"
},
"files": [
"lib/",
"dist/*.js",
"test/",
"LICENSE"
],
"main": "lib/index.js",
"eslintConfig": {
"extends": "boss/es5"
},
"eslintIgnore": [
"lib/common/messages/*.js"
],
"keywords": [
"database",
"adapter",
"data",
"model",
"record"
]
}