-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.29 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@panviz/actionman",
"version": "0.0.1",
"description": "Actions manager",
"keywords": [
"actions manager",
"command pattern"
],
"homepage": "https://github.com/panviz/actionman#readme",
"license": "MIT",
"main": "dist/bundle.js",
"module": "index",
"repository": {
"type": "git",
"url": "https://github.com/panviz/actionman"
},
"scripts": {
"build": "yarn build:lib && yarn build:demo",
"build:lib": "webpack --mode=production",
"build:demo": "cd demo/ && webpack --mode=production",
"lint": "eslint . --ignore-path .gitignore",
"start": "cd demo/ && webpack-dev-server --port 8005",
"pretest": "yarn lint",
"test": "jest",
"deploy": "cd demo/ && rsync -azP --delete dist/ index.html data.json daviste.com:/home/dmitra/daviste.com/static/demo/panviz-actionman"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions"
]
}
}
]
]
},
"eslintConfig": {
"env": {
"browser": true,
"jest": true
},
"extends": "@panviz/eslint-config",
"globals": {
"_": true,
"$": true
}
},
"dependencies": {
"eventemitter3": "^3.1.0",
"handlebars-loader": "^1.6.0"
},
"devDependencies": {
"@panviz/eslint-config": "^0.0.1",
"@panviz/uuid62": "^0.0.1",
"@material/animation": "^0.34.0",
"@material/button": "^0.36.0",
"@material/list": "^0.36.0",
"@material/menu": "^0.35.0",
"@material/ripple": "^0.36.0",
"@material/select": "^0.36.0",
"@material/switch": "^0.36.0",
"@mdi/font": "^2.4.85",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"css-loader": "^0.28.4",
"eslint": "^4.6.0",
"jest": "^23.1.0",
"jquery": "^3.2.1",
"mocha": "^5.2.0",
"node-sass": "^4.5.3",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
},
"peerDependencies": {
"lodash": "4.x"
},
"jest": {
"testMatch": [
"**/test/**/!(*.setup).js"
],
"setupFiles": [
"./test/global.setup.js"
]
},
"precommit": "test"
}