-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
104 lines (104 loc) · 2.84 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "common-tags",
"description": "a few common utility template tags for ES2015",
"version": "2.0.0-alpha.1",
"author": "Declan de Wet <[email protected]>",
"bugs": {
"url": "http://github.com/declandewet/common-tags/issues"
},
"contributors": [
"Declan de Wet (https://github.com/declandewet)",
"Jason Killian (https://github.com/JKillian)",
"Laurent Goudet (https://github.com/laurentgoudet)",
"Kamil Ogórek (https://github.com/kamilogorek)",
"Lucian Buzzo (https://github.com/LucianBuzzo)",
"Rafał Ruciński (https://github.com/fatfisz)"
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-export-default-from": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-node-resolve": "^8.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"codecov": "^3.7.0",
"cross-env": "^7.0.2",
"doctoc": "^1.4.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"micromatch": "^4.0.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.12.0",
"rollup-plugin-uglify": "^6.0.4"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=10.0.0"
},
"homepage": "https://github.com/declandewet/common-tags",
"keywords": [
"array",
"babel",
"es2015",
"es2015-tag",
"es6",
"es6-tag",
"heredoc",
"html",
"indent",
"indents",
"line",
"literal",
"multi",
"multiline",
"normalize",
"one",
"oneline",
"single",
"singleline",
"string",
"strings",
"strip",
"tag",
"tagged",
"template"
],
"license": "MIT",
"main": "lib",
"jsnext:main": "es",
"module": "es",
"unpkg": "dist/common-tags.min.js",
"files": [
"/dist",
"/es",
"/lib"
],
"repository": {
"type": "git",
"url": "https://github.com/declandewet/common-tags"
},
"scripts": {
"clear": "rimraf lib && rimraf es && rimraf dist",
"build": "npm run clear && npm run build:cjs && npm run build:es && npm run build:unpkg",
"build:cjs": "babel src --out-dir lib --ignore **/*.test.js",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore **/*.test.js",
"build:unpkg": "cross-env BABEL_ENV=es rollup --config",
"codecov": "codecov",
"doctoc": "doctoc readme.md --title \"## Table of Contents\"",
"lint": "eslint .*rc.js *.js src/**/*.js --ignore-pattern '!.*rc.js'",
"lint:fix": "npm run lint -- --fix",
"prerelease": "npm run build",
"preversion": "npm run doctoc && npm test",
"release": "npm publish",
"test": "npm run lint && jest src"
}
}