-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.28 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": "github",
"version": "0.7.0",
"description": "Browser extension that shows WaveDrom diagrams on GitHub page",
"main": "index.js",
"scripts": {
"test": "eslint src",
"build": "npm run clean && npm run build:content && npm run build:options && npm run build:manifest && npm run copy",
"build:content": "browserify -v -d src/content-script.js -o dist/content-script.js",
"build:options": "browserify -v -d src/options.js -o dist/options.js",
"build:manifest": "node src/manifest.js > dist/manifest.json",
"copy": "cp assets/*.* dist",
"clean": "rimraf dist && mkdir dist",
"release": "npm run build && webstore upload --source dist --auto-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavedrom/github.git"
},
"keywords": [],
"author": "WaveDrom",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavedrom/github/issues"
},
"homepage": "https://github.com/wavedrom/github#readme",
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"browserify": "^17.0.0",
"chrome-webstore-upload-cli": "^2.1.0",
"eslint": "^8.28.0",
"json5": "^2.2.1",
"rimraf": "^3.0.2",
"wavedrom": "^2.9.1"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}