-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
{
"name": "@mili-handlers/ejs",
"main": "lib/index.js",
"version": "1.0.1",
"description": "The mili handler used to parse ejs template.",
"module": "es/index.js",
"keywords": [
"mili",
"handler",
"ejs",
"template"
],
"license": "MIT",
"scripts": {
"test": "ava",
"test:debug": "ava --verbose",
"test:update": "ava -u",
"report": "nyc --reporter=html --reporter=text-summary --skip-full ava",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"ci": "git-cz",
"ca": "git add -A && git-cz -av",
"release": "standard-version --no-verify",
"release:alpha": "standard-version --prerelease alpha",
"release:first": "standard-version --first-release",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git push",
"clean": "rm -rf ./lib/*",
"prebuild": "npm run clean",
"watch": "NODE_ENV=development rollup -c -w",
"build": "rollup -c"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"standard-version": "^6.0.1",
"nyc": "^14.1.1",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"ts-node": "^8.3.0",
"ava": "^2.1.0",
"coveralls": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^6.0.1",
"lint-staged": "^8.2.1",
"husky": "^2.7.0",
"rollup": "^1.16.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-ts-paths": "^1.0.3",
"rollup-plugin-typescript": "^1.0.1",
"sinon": "^7.3.2",
"source-map-support": "^0.5.12",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/ejs": "^2.6.3",
"@types/node": "^12.0.10",
"ejs": "^2.6.2"
}
}