1 | {
|
2 | "name": "common-tags",
|
3 | "description": "a few common utility template tags for ES2015",
|
4 | "version": "1.7.0",
|
5 | "author": "Declan de Wet <declandewet@me.com>",
|
6 | "ava": {
|
7 | "verbose": true,
|
8 | "babel": "inherit",
|
9 | "require": [
|
10 | "babel-register"
|
11 | ],
|
12 | "files": [
|
13 | "src/**/*.test.js"
|
14 | ]
|
15 | },
|
16 | "bugs": {
|
17 | "url": "http://github.com/declandewet/common-tags/issues"
|
18 | },
|
19 | "contributors": [
|
20 | "Declan de Wet (https://github.com/declandewet)",
|
21 | "Jason Killian (https://github.com/JKillian)",
|
22 | "Laurent Goudet (https://github.com/laurentgoudet)",
|
23 | "Kamil Ogórek (https://github.com/kamilogorek)",
|
24 | "Lucian Buzzo (https://github.com/LucianBuzzo)",
|
25 | "Rafał Ruciński (https://github.com/fatfisz)"
|
26 | ],
|
27 | "dependencies": {
|
28 | "babel-runtime": "^6.26.0"
|
29 | },
|
30 | "devDependencies": {
|
31 | "ava": "^0.24.0",
|
32 | "babel-cli": "^6.26.0",
|
33 | "babel-eslint": "^8.0.2",
|
34 | "babel-plugin-add-module-exports": "^0.2.1",
|
35 | "babel-plugin-transform-class-properties": "^6.24.1",
|
36 | "babel-plugin-transform-export-extensions": "^6.22.0",
|
37 | "babel-plugin-transform-runtime": "^6.23.0",
|
38 | "babel-preset-env": "^1.6.1",
|
39 | "babel-register": "^6.26.0",
|
40 | "codecov": "^3.0.0",
|
41 | "cross-env": "5.1.3",
|
42 | "doctoc": "^1.3.0",
|
43 | "micromatch": "^3.1.4",
|
44 | "nyc": "^11.3.0",
|
45 | "rimraf": "^2.6.2",
|
46 | "snazzy": "^7.0.0",
|
47 | "standard": "^10.0.3",
|
48 | "when": "^3.7.8"
|
49 | },
|
50 | "directories": {
|
51 | "lib": "lib"
|
52 | },
|
53 | "engines": {
|
54 | "node": ">=4.0.0"
|
55 | },
|
56 | "homepage": "https://github.com/declandewet/common-tags",
|
57 | "keywords": [
|
58 | "array",
|
59 | "babel",
|
60 | "es2015",
|
61 | "es2015-tag",
|
62 | "es6",
|
63 | "es6-tag",
|
64 | "heredoc",
|
65 | "html",
|
66 | "indent",
|
67 | "indents",
|
68 | "line",
|
69 | "literal",
|
70 | "multi",
|
71 | "multiline",
|
72 | "normalize",
|
73 | "one",
|
74 | "oneline",
|
75 | "single",
|
76 | "singleline",
|
77 | "string",
|
78 | "strings",
|
79 | "strip",
|
80 | "tag",
|
81 | "tagged",
|
82 | "template"
|
83 | ],
|
84 | "license": "MIT",
|
85 | "main": "lib",
|
86 | "jsnext:main": "es",
|
87 | "module": "es",
|
88 | "nyc": {
|
89 | "exclude": [
|
90 | "**/*.test.js",
|
91 | ".babelrc.js"
|
92 | ]
|
93 | },
|
94 | "repository": {
|
95 | "type": "git",
|
96 | "url": "https://github.com/declandewet/common-tags"
|
97 | },
|
98 | "scripts": {
|
99 | "clear": "rimraf lib && rimraf es",
|
100 | "build": "npm run clear && npm run build:cjs && npm run build:es",
|
101 | "build:cjs": "cross-env BABEL_ENV=cjs babel src -d lib --ignore *.test.js",
|
102 | "build:es": "cross-env BABEL_ENV=es babel src -d es --ignore *.test.js",
|
103 | "codecov": "npm run coverage && codecov",
|
104 | "coverage": "nyc report --reporter=lcov",
|
105 | "doctoc": "doctoc readme.md --title \"\n## Table of Contents\"",
|
106 | "lint": "standard | snazzy",
|
107 | "precoveralls": "npm run coverage",
|
108 | "prerelease": "npm run build",
|
109 | "preversion": "npm run doctoc && npm test",
|
110 | "release": "npm publish",
|
111 | "test": "npm run lint && cross-env BABEL_ENV=cjs nyc ava",
|
112 | "test-ci": "npm run lint && cross-env BABEL_ENV=cjs nyc ava --serial --fail-fast"
|
113 | },
|
114 | "standard": {
|
115 | "parser": "babel-eslint",
|
116 | "ignore": [
|
117 | "readme.md",
|
118 | "es"
|
119 | ]
|
120 | }
|
121 | }
|