This repository has been archived by the owner on Mar 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.53 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
{
"name": "@frame-js/frame",
"version": "1.0.0",
"description": "Frame is a flow based programming library for databases, APIs, utilities, objects, schemas and more!",
"main": "build/frame.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"test": "mocha",
"build": "rollup -c config/rollup.config.js --environment build:production",
"prepublish": "npm run build",
"dev": "rollup -c config/rollup.config.js -w --environment build:dev"
},
"keywords": [
"Frame",
"Blueprint",
"ORM",
"library",
"flow",
"flow control",
"flow based programming",
"database",
"databases",
"API",
"utility",
"utilities",
"schema",
"schemas",
"object",
"objects",
"chainable",
"monad",
"bootstrap",
"turn based",
"turn based programming",
"microcosm",
"declarative",
"javascript"
],
"author": "Levi Roberts",
"license": "MIT",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-async-await": "0.0.0",
"rollup": "^1.15.1",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-eslint": "^5.1.0",
"rollup-plugin-filesize": "^6.1.0",
"rollup-plugin-gzip": "^2.2.0",
"rollup-plugin-strip": "^1.2.1",
"rollup-plugin-terser": "^4.0.4"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/frame-js/Frame.git"
},
"bugs": {
"url": "https://github.com/frame-js/Frame/issues"
},
"homepage": "https://github.com/frame-js/Frame#readme"
}