-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "akkajs-dom",
"version": "0.1.0",
"description": "Akka.Js Dom framework extension",
"author": "Andrea Peruffo",
"license": "MIT",
"main": "./js/main.out.js",
"dependencies": {
"akkajs": "latest",
"vdom-as-json": "latest",
"vdom-serialized-patch": "latest",
"virtual-dom": "latest"
},
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"prepublish": "webpack",
"fmt": "eslint --fix *.js",
"buildDemo": "foreach -g 'demo/*' -x \"cd #{dir}/#{name} && npm install && npm run build\" > /dev/null",
"test": "ava --verbose --fail-fast --serial --timeout=30s"
},
"devDependencies": {
"foreach-cli": "^1.8.0",
"ava": "^1.0.0-beta.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-jsx": "latest",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.3",
"nightmare": "^3.0.1",
"npm": "^6.1.0",
"serve-static": "^1.13.2",
"webpack": "^3.5.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akka-js/akka.js-dom.git"
},
"keywords": [
"scalajs",
"akka",
"akkajs",
"actor",
"akkajs-dom",
"workers",
"dom"
]
}