-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "@lyngs/chain",
"version": "0.5.1",
"description": "An onion-model basis chain builder for JavaScript.",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --require @babel/register",
"test:build": "rollup -c & mocha --require @babel/register",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShookLyngs/chain.git"
},
"author": "ShookLyngs",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShookLyngs/chain/issues"
},
"homepage": "https://github.com/ShookLyngs/chain#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"chain",
"class",
"onion",
"onion-model",
"fragment",
"javascript"
],
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@lyngs/merge": "^1.0.8",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"chai": "^4.2.0",
"core-js": "^3.7.0",
"mocha": "^8.2.1",
"rollup": "^2.33.2"
}
}