-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
95 lines (95 loc) · 2.48 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
{
"name": "template-file",
"version": "4.1.0",
"main": "dist/index.js",
"description": "🔀 Replace {{ variables }} in all your files",
"repository": "https://github.com/gsandf/template-file",
"contributors": [
"Blake Knight <[email protected]> (http://blakek.me/)"
],
"homepage": "https://github.com/gsandf/template-file#readme",
"bugs": {
"url": "https://github.com/gsandf/template-file/issues"
},
"keywords": [
"replace",
"template",
"handlebars"
],
"license": "MIT",
"files": [
"dist/**"
],
"sideEffects": false,
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"engines": {
"node": ">=10.0.0"
},
"ava": {
"extensions": [
"js",
"ts"
],
"files": [
"__tests__/**/*.ts"
],
"ignoredByWatcher": [
"!src/**"
],
"require": [
"ts-node/register"
],
"timeout": "30s"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"dependencies": {
"@blakek/deep": "^2.1.1",
"glob": "^7.1.6",
"meow": "^8.0.0",
"mkdirp": "^1.0.4",
"p-limit": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@types/glob": "^7.1.3",
"@types/mkdirp": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"amper-scripts": "^1.0.0-1",
"ava": "^3.13.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.34.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"peerDependencies": {},
"scripts": {
"build:clean": "rimraf ./dist",
"build:js": "tsc --build",
"build": "run-s build:clean build:js",
"format-check": "amper-scripts format-check '*.{js,ts,tsx}' 'src/**/*.{js,ts,tsx}'",
"format": "amper-scripts format-write '*.{js,ts,tsx}' 'src/**/*.{js,ts,tsx}'",
"lint": "amper-scripts lint --config ./.eslintrc.js '*.{js,ts,tsx}' 'src/**/*.{js,ts,tsx}'",
"prepack": "run-s validate build",
"test": "ava",
"typeCheck": "tsc --noEmit",
"validate": "run-p test format-check lint typeCheck"
}
}