This repository has been archived by the owner on Nov 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.6 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
{
"author": "Romain Racamier-Lafon <romain.racamier@gmail.com>",
"browserslist": [
"since 2018"
],
"bugs": "https://github.com/Shuunen/muse-ml5/issues",
"description": "a test project to play with Muse EEG headset & ML5.js",
"devDependencies": {
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-html": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-unicorn": "latest",
"muse-js": "3.2.0",
"npm-run-all": "4.1.5",
"parcel-bundler": "1.12.4",
"reefjs": "7.6.1",
"repo-check": "1.14.1",
"sakura.css": "1.3.1",
"serve": "11.3.2"
},
"files": [
"src"
],
"homepage": "https://github.com/Shuunen/muse-ml5",
"keywords": [
"muse",
"ml5"
],
"license": "GPL-3.0",
"name": "@shuunen/muse-ml5",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Shuunen/muse-ml5.git"
},
"scripts": {
"build": "parcel build src/index.html --public-url . --no-source-maps --detailed-report",
"check": "repo-check",
"ci": "run-s lint build check test",
"dev": "npm run watch",
"lint": "eslint --fix --ignore-path .gitignore --ext .js,.html .",
"postversion": "git push && git push --tags",
"prebuild": "rimraf dist/*",
"preversion": "npm run ci",
"serve": "serve dist",
"start": "run-s build serve",
"test": "echo no test yet",
"update": "npx npm-check-updates -u",
"watch": "parcel src/index.html --port 8000"
},
"version": "0.0.1"
}