-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "infovis",
"version": "0.0.1",
"repository": "https://bitbucket.org/gabybosetti/infovis/",
"author": "LIFIA",
"license": "MIT",
"main": "",
"private": false,
"scripts": {
"build": "yarn lint && grunt",
"build:visualizer": "yarn --cwd \"src/visualizer/\" && yarn --cwd \"src/visualizer/\" build:prod",
"prepublish": "yarn --cwd \"src/\" && yarn build && yarn test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start:chrome": "chrome --load-extension=$(pwd)/src",
"start:chromium": "chromium --load-extension=$(pwd)/src",
"start:firefox": "web-ext run -s src",
"start:nightly": "web-ext run -s src --firefox=nightly",
"test": "echo \"No test specified\"; exit 0",
"watch": "grunt watch"
},
"devDependencies": {
"eslint": "^5.6.1",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-promise": "^4.0.1",
"grunt": "^1.0.3",
"grunt-clean": "^0.4.0",
"grunt-cli": "^1.3.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-watch": "^1.1.0",
"web-ext": "^2.9.1"
},
"dependencies": {}
}