-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.71 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
{
"name": "@onenexus/synergy",
"version": "4.0.0-beta.27",
"description": "A framework for building modular, configurable and scalable UI components for React-DOM projects",
"main": "dist/synergy.js",
"author": "(Edmund Reed)[http://twitter.com/esr360] <esr360@live.com>",
"homepage": "https://github.com/esr360/Synergy",
"keywords": [
"javascript",
"modular",
"modules",
"ui",
"user-interface",
"components",
"front-end",
"framework",
"web",
"react"
],
"bugs": {
"url": "https://github.com/esr360/Synergy/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/esr360/Synergy.git"
},
"dependencies": {
"@onenexus/cell": "^1.0.0-beta.21",
"@onenexus/lucid": "^1.0.0-beta.18",
"deep-extend": "^0.5.1"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"eslint": "^4.14.0",
"jsdoc": "^3.6.3",
"jsdom": "^13.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"scripts": {
"lint": "eslint './src/js/**/*.js'",
"test": "mocha test/tests.js --require @babel/register",
"docs": "jsdoc src -r -d docs/js",
"js": "webpack",
"build": "npm run lint && npm test && npm run docs && npm run js"
}
}