This repository has been archived by the owner on Feb 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "page-metadata-parser",
"description": "A JavaScript library for parsing metadata in a Web Page.",
"version": "1.1.4",
"author": "Jared Kerim",
"bugs": {
"url": "https://github.com/mozilla/page-metadata-parser/issues"
},
"dependencies": {},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"domino": "^2.1.0",
"eslint": "^2.13.1",
"eslint-plugin-mozilla": "^0.0.3",
"istanbul": "^0.4.4",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"npm-run-all": "^2.2.0",
"webpack": "^1.13.2"
},
"homepage": "https://github.com/mozilla/page-metadata-parser#readme",
"keywords": [
"page",
"metadata",
"parser"
],
"license": "MPL-2.0",
"main": "parser.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/page-metadata-parser.git"
},
"scripts": {
"cover": "cat ./coverage/lcov/lcov.info | coveralls",
"tdd": "npm run test:karma -- --no-single-run",
"test": "npm-run-all test:*",
"test:karma": "karma start",
"test:lint": "eslint .",
"test:mocha": "istanbul cover _mocha --report lcovonly -- tests/*.test.js -R spec",
"bundle": "webpack --optimize-minimize --optimize-dedupe",
"clientize": "npm run bundle"
}
}