-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 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
{
"name": "micromustache",
"version": "8.0.3",
"description": "A fast, minimal and secure template engine for JavaScript",
"keywords": [
"template",
"mustache",
"string processing",
"string interpolation",
"template engine",
"lodash get",
"lodash toPath",
"lodash template",
"microlibrary"
],
"types": "dist/types/index.d.ts",
"type": "commonjs",
"main": "dist/micromustache.cjs",
"module": "dist/micromustache.mjs",
"directories": {
"example": "examples",
"lib": "./dist"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@rollup/plugin-typescript": "^5.0.2",
"@types/jest": "^26.0.9",
"@types/mustache": "^4.0.1",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"am": "^1.0.2",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.2.2",
"mustache": "^4.0.1",
"pkg-ok": "^2.3.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-terser": "^6.1.0",
"sloc": "^0.2.1",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "http://github.com/userpixel/micromustache.git"
},
"funding": "https://github.com/userpixel/micromustache/blob/master/.github/FUNDING.yml",
"author": "Alex Ewerlöf",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build:ts": "rollup --config",
"build:types": "tsc src/index.ts --target es5 --declaration --emitDeclarationOnly --declarationDir dist/types",
"build": "npm run build:ts && npm run build:types",
"docs": "typedoc src/index.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test:unit": "jest",
"pretest:dist": "npm run build",
"test:dist": "cd dist-test && ./run.sh",
"test:examples": "for i in examples/*.js;do node \"$i\";done",
"test": "npm run test:unit && npm run test:dist && npm run test:examples",
"preversion": "npm test && npm run clean && npm run build && pkg-ok",
"prepublishOnly": "npm run test && npm run build && pkg-ok",
"postversion": "git push && git push --tags",
"api-extractor": "api-extractor run --local",
"sloc": "sloc src -e .*spec.* -k source --format cli-table",
"perf": "npm run build:ts && node perf/against-mustache.js"
},
"dependencies": {}
}