-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "create-hyperdom-app",
"version": "1.7.5",
"description": "hyperdom starter kit",
"main": "index.js",
"bin": "index.js",
"repository": "github:featurist/create-hyperdom-app",
"scripts": {
"test": "DEBUG=create-hyperdom-app:*,meshell electron-mocha --color --no-sandbox --disable-site-isolation-trials --renderer test/createAppSpec.js",
"lint": "eslint --ignore-path .gitignore index.js test",
"ci": "yarn lint && yarn test"
},
"author": "Artem Avetisyan",
"license": "MIT",
"devDependencies": {
"@types/colors": "latest",
"@types/mocha": "latest",
"browser-monkey": "^2.11.0",
"chai": "latest",
"electron": "latest",
"electron-mocha": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-mocha": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"trytryagain": "latest",
"typescript": "latest"
},
"dependencies": {
"colors": "^1.4.0",
"debug": "^4.1.0",
"fs-extra": "^9.0.1",
"meshell": "^2.0.1",
"yargs": "^15.4.1"
}
}