-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.77 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"private": true,
"name": "y4d",
"version": "0.0.0",
"description": "Yammer for Developers (y4d).",
"files": [],
"dependencies": {},
"devDependencies": {
"archiver": "^1.3.0",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.23.0",
"babili": "0.0.11",
"browserify": "^14.1.0",
"chokidar-cli": "^1.2.0",
"clean-css-cli": "^4.0.8",
"co": "^4.6.0",
"codecov": "^1.0.1",
"cpx": "^1.5.0",
"eslint": "^3.16.1",
"eslint-config-mysticatea": "^8.0.0",
"event-target-shim": "^2.0.0",
"highlight.js": "^9.9.0",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.1.2",
"opener": "^1.4.3",
"power-assert": "^1.4.2",
"rimraf": "^2.6.1",
"watchify": "^3.9.0"
},
"scripts": {
"build": "run-s test build:**",
"build:prepare:clean": "rimraf y4d y4d.zip y4d.crx",
"build:prepare:mkdir": "mkdirp y4d/background && mkdirp y4d/content && mkdirp y4d/options",
"build:prepare:copy": "cpx \"src/**/{*.json,*.html,*.png,LICENSE}\" y4d",
"build:background": "browserify src/background/index.js | babili > y4d/background/index.js",
"build:content:css": "cleancss src/content/index.css -o y4d/content/index.css",
"build:content:js": "browserify src/content/index.js | babili > y4d/content/index.js",
"build:options": "browserify src/options/index.js | babili > y4d/options/index.js",
"clean": "rimraf .nyc_output coverage y4d y4d.zip y4d.crx",
"codecov": "nyc report -r lcovonly && codecov",
"coverage": "nyc report -r lcov && opener ./coverage/lcov-report/index.html",
"lint": "eslint src test",
"postversion": "git push && git push --tags",
"pretest": "npm run -s lint",
"preversion": "npm test && npm run build",
"test": "nyc npm run -s test:_mocha",
"test:_mocha": "_mocha \"test/**/*.js\" --compilers js:babel-register --reporter progress",
"watch": "run-s \"build:prepare:{clean,mkdir}\" && run-p watch:**",
"watch:prepare:copy": "npm run build:prepare:copy -- --watch",
"watch:background": "watchify src/background/index.js -o y4d/background/index.js",
"watch:content:css": "chokidar \"src/**/*.css\" --initial --command \"npm run build:content:css\"",
"watch:content:js": "watchify src/content/index.js -o y4d/content/index.js",
"watch:options": "watchify src/options/index.js -o y4d/options/index.js",
"watch:test": "npm run -s test:_mocha -- --watch --growl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/Yammer-for-Developers.git"
},
"keywords": [],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/Yammer-for-Developers/issues"
},
"homepage": "https://github.com/mysticatea/Yammer-for-Developers#readme"
}