-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 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
57
58
59
60
61
62
63
{
"name": "htsl-meta-tag-lexicon",
"version": "0.1.2",
"description": "HTML 5 Meta Tags lexicon for HTSL",
"main": "dist/index.js",
"module": "dist/index.mjs",
"jsnext:main": "dist/index.mjs",
"scripts": {
"prebuild": "eslint src test",
"build": "npm run bundles && uglifyjs dist/index.js -m -o dist/index.min.js",
"bundles": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "mocha",
"karma": "karma start",
"cover": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test/*.js",
"prepublish": "npm test",
"release": "standard-version"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"keywords": [
"html5",
"meta-tags",
"babelute",
"lexicon"
],
"author": "Gilles Coomans",
"license": "MIT",
"dependencies": {
"htsl-lexicon": "^0.2.3"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.14.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"babelrc-rollup": "^3.0.0",
"chai": "^3.5.0",
"cross-env": "^5.0.0",
"eslint": "^3.15.0",
"eslint-plugin-import": "^2.2.0",
"karma": "^1.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^4.0.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-watch": "^3.2.2",
"standard-version": "^4.0.0",
"uglify-js": "^3.0.3"
}
}