-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.7 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.7 KB
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
{
"name": "headerviewextention",
"version": "1.0.0",
"description": "Extension that allows to view headers",
"main": "popup.js",
"scripts": {
"clean": "rm -rf .tmp ./dist && mkdir dist",
"compile": "tsc",
"copy": "(npm run copy:css & npm run copy:icons & npm run copy:files)",
"copy:css": "cp -r ./src/css ./dist/css",
"copy:icons": "cp -r ./src/icons ./dist/icons",
"copy:files": "cp ./src/*.* ./dist/",
"bundle": "(npm run bundle:popup & npm run bundle:listener)",
"bundle:popup": "browserify -d ./.tmp/js/popup.js | exorcist ./dist/popup.bundle.js.map > ./dist/popup.bundle.js",
"bundle:listener": "browserify -d ./.tmp/js/listener.js | exorcist ./dist/listener.bundle.js.map > ./dist/listener.bundle.js",
"build": "npm run clean && (npm run lint & npm run compile) && npm run test:unit && (npm run bundle & npm run copy)",
"lint:js": "eslint src/**/*.js",
"lint:ts": "tslint src/**/*.ts",
"lint": "(npm run lint:js & npm run lint:ts)",
"test:unit": "ava --verbose",
"test": "npm run compile && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nidhognit/HeaderViewExtention.git"
},
"keywords": [
"extension",
"headers"
],
"author": "Dimitri Kravchenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nidhognit/HeaderViewExtention/issues"
},
"homepage": "https://github.com/Nidhognit/HeaderViewExtention#readme",
"ava": {
"files": [
".tmp/test/**/*.js"
]
},
"devDependencies": {
"@types/chrome": "0.0.38",
"ava": "^0.17.0",
"browserify": "^13.3.0",
"eslint": "^3.11.1",
"exorcist": "^0.4.0",
"tslint": "^4.4.2",
"typescript": "^2.1.5"
}
}