forked from fusioncharts/faberjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 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
{
"name": "faberjs",
"version": "0.1.0",
"description": "Faberjs is an open-source platform-independent layouting engine capable of mimicking different CSS layouting paradigm",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --host=0.0.0.0 --port 9000 --hot --config webpack.config.js",
"minify": "rm -rf es/ && npx babel src -d es --minified --no-comments",
"build": "rm -rf dist/ && npx webpack --dev && npx webpack --prod",
"watch": "webpack --watch --mode=development",
"lint": "npx eslint src/",
"test": "ci/test"
},
"pre-commit": {
"run": [
"lint",
"test"
]
},
"keywords": [
"faber",
"faberjs",
"css",
"css-grid",
"grid",
"layout",
"layout-engine",
"css-in-svg",
"css-in-canvas",
"grid-in-svg",
"grid-in-canvas",
"layout-in-svg",
"layout-in-canvas"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fusioncharts/faberjs.git"
},
"author": "FusionCharts",
"contributors": [
{
"name": "Priyanjit Dey",
"email": "[email protected]"
},
{
"name": "Nilarnab Mookherjee",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fusioncharts/faberjs/issues"
},
"homepage": "https://github.com/fusioncharts/faberjs#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"eslint": "^6.0.1",
"jest": "^24.8.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"pre-commit": "^1.2.2"
}
}