This repository was archived by the owner on Aug 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.48 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.48 KB
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
{
"name": "@yr/framework",
"description": "A universal application framework based on Express.js",
"version": "5.1.0",
"author": "Alexander Pope <alexander.pope@nrk.no>",
"dependencies": {
"@yr/clock": "2.1.0",
"@yr/express": "4.15.3",
"@yr/express-client": "^4.1.3",
"body-parser": "1.18.3",
"cookie-parser": "1.4.4",
"debug": "4.1.1",
"helmet": "3.16.0",
"inline-source": "6.1.9",
"ms": "2.1.1",
"on-finished": "2.3.x",
"performance-now": "2.1.0",
"uuid": "3.3.2"
},
"devDependencies": {
"babel-plugin-syntax-trailing-function-commas": "6.22.0",
"babel-plugin-transform-async-generator-functions": "6.24.1",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoping": "6.26.0",
"babel-plugin-transform-es2015-classes": "6.24.1",
"babel-plugin-transform-es2015-computed-properties": "6.24.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-duplicate-keys": "6.24.1",
"babel-plugin-transform-es2015-for-of": "6.23.0",
"babel-plugin-transform-es2015-function-name": "6.24.1",
"babel-plugin-transform-es2015-literals": "6.22.0",
"babel-plugin-transform-es2015-object-super": "6.24.1",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-es2015-sticky-regex": "6.24.1",
"babel-plugin-transform-es2015-template-literals": "6.22.0",
"babel-plugin-transform-es2015-unicode-regex": "6.24.1",
"babel-plugin-transform-es5-property-mutators": "6.24.1",
"babel-plugin-transform-exponentiation-operator": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"buddy": "6.14.x",
"chai": "^4.2.0",
"cross-env": "5.2.0",
"mocha": "6.0.2",
"supertest": "4.0.2"
},
"main": "src/server.js",
"repository": "https://github.com/YR/framework.git",
"license": "MIT",
"engines": {
"node": ">=8.5"
},
"scripts": {
"prepublish": "buddy build",
"test": "cross-env NODE_ENV=test mocha test/test.js --reporter spec --bail"
},
"browser": "./client.js",
"buddy": {
"build": [
{
"input": "src/",
"output": ".",
"bundle": false,
"version": "es5"
}
]
}
}