-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.66 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
{
"name": "tabmarks",
"version": "1.0.0-beta.4",
"description": "Web Extension for handling groups of tabs persisted as bookmarks",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"clean": "rm -rf dist",
"start": "npm-run-all clean build:assets --parallel watch:rollup watch:web-ext",
"watch:rollup": "rollup -c -w",
"watch:web-ext": "web-ext run --source-dir=dist --keep-profile-changes -p /Users/hupf/Library/Application\\ Support/Firefox/Profiles/mpxk0czw.tabmarks-dev -f /Applications/FirefoxNightly.app/Contents/MacOS/firefox",
"lint": "eslint .",
"build": "npm-run-all clean build:rollup build:assets build:web-ext",
"build:rollup": "rollup -c",
"build:assets": "copy {*.md,LICENSE,manifest.json,assets/**/*,src/**/*.html,src/**/*.css} dist",
"build:web-ext": "web-ext build --source-dir=dist --ignore-files=package.json yarn.lock \"**/*.test.js\" --overwrite-dest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hupf/tabmarks.git"
},
"author": "Mathis Hofer",
"license": "MIT",
"bugs": {
"url": "https://github.com/hupf/tabmarks/issues"
},
"homepage": "https://github.com/hupf/tabmarks#readme",
"dependencies": {
"copy": "^0.3.1",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rxjs": "^5.4.3"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.2.0",
"npm-run-all": "^4.1.1",
"web-ext": "^2.0.0"
},
"jest": {
"clearMocks": true
}
}