-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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
{
"name": "@vanillaes/interpolate",
"version": "3.0.0",
"description": "Interpret JavaScript tagged literal templates",
"keywords": [
"esm",
"esmodules",
"javascript",
"template-engine"
],
"license": "MIT",
"author": "Evan Plaice <evanplaice@gmail.com> (http://evanplaice.com/)",
"repository": "http://github.com/vanillaes/interpolate",
"type": "module",
"exports": {
"import": "./index.js",
"browser": "./index.min.js"
},
"types": "index.d.ts",
"scripts": {
"test": "tape-es",
"test:watch": "tape-watch-es",
"lint": "esmtk lint",
"types": "npx -p typescript tsc index.js -t esnext --allowJS --checkJS --skipLibCheck --noEmit",
"build": "npm run build:min && npm run build:typings",
"build:min": "esmtk minify index.js index.min.js",
"build:typings": "npx -p typescript tsc index.js -t esnext --allowJS --checkJS --skipLibCheck --declaration --emitDeclarationOnly --noEmitOnError",
"clean": "npm run clean:builds && npm run clean:typings",
"clean:builds": "npx rimraf index.min.js",
"clean:typings": "npx rimraf src/*.d.ts",
"package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf",
"preversion": "npm test && npm run lint && npm run types",
"version": "npm run build",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"esmtk": "^0.5.13",
"tape-es": "^1.2.16"
},
"engines": {
"node": ">=14"
}
}