-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.61 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "gulp-parser-inline",
"version": "1.6.3",
"discription": "gulp-parser-inline",
"scripts": {
"doc": "gulp doc",
"conf": "tsc && node_modules/ts-node/dist/bin.js src/configuration/generate.ts",
"test": "jest --no-cache",
"cover": "node_modules/nyc/bin/nyc.js npm run test test/**/*.ts && node_modules/nyc/bin/nyc.js report --reporter=text",
"coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls",
"url": "echo visit: http://127.0.0.1:8077/demo/?debug",
"build": "gulp",
"watch": "gulp watch & npm start",
"watch:dev": "cross-env NODE_ENV=development gulp watch",
"start": "npm run url && http-server ./ -c-1 -p 8077",
"semantic-release": "semantic-release",
"lint": "eslint 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/searchfe/gulp-parser-inline"
},
"homepage": "https://github.com/searchfe/gulp-parser-inline",
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.2.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/npm": "^5.1.13",
"@semantic-release/release-notes-generator": "^7.2.1",
"@types/clean-css": "^4.2.1",
"@types/ftp": "^0.3.29",
"@types/gulp-util": "^3.0.34",
"@types/jest": "^24.0.11",
"@types/node": "^10.14.5",
"@types/through2": "^2.0.34",
"@types/uglify-js": "^3.0.4",
"@types/underscore": "^1.8.9",
"coveralls": "^3.0.2",
"cross-env": "^6.0.3",
"crypto": "^1.0.1",
"del": "^3.0.0",
"eslint": "^6.5.1",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"etpl": "^3.2.0",
"findup-sync": "^2.0.0",
"gulp": "^4.0.0",
"gulp-base64-inline": "^1.0.4",
"gulp-inline-template": "^1.1.5",
"gulp-replace": "^1.0.0",
"gulp-transform-cache": "*1.1.0",
"gulp-typedoc": "^2.2.1",
"gulp-typescript": "^5.0.0-alpha.3",
"http-server": "^0.11.1",
"istanbul": "^0.4.5",
"jest": "^24.7.1",
"jsdoc-to-markdown": "^4.0.1",
"json-beautify": "^1.1.1",
"nyc": "^13.0.1",
"semantic-release": "^15.13.19",
"source-map-support": "^0.5.9",
"ts-jest": "^24.0.2",
"ts-node": "^7.0.1",
"typedoc": "^0.12.0",
"typedoc-plugin-markdown": "^1.1.15",
"typescript": "^3.1.6"
},
"dependencies": {
"@types/escape-html": "^0.0.20",
"@types/less": "^3.0.0",
"@types/replace-ext": "0.0.27",
"clean-css": "^4.2.1",
"debug": "^4.1.1",
"escape-html": "^1.0.3",
"gulp-util": "^3.0.8",
"html-minifier": "^4.0.0",
"less": "^3.9.0",
"replace-ext": "^1.0.0",
"through2": "^3.0.1",
"uglify-js": "^3.5.10"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"peerDependencies": {
"gulp-transform-cache": "*1.1.0"
},
"engines": {
"node": ">= 6.0.x"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "",
"files": [
"dist",
"*.json",
"*.md",
"text.d.ts"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
}
}