FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript-Templates/package.json at master · pixelatusSoftware/JavaScript-Templates · GitHub
pixelatusSoftware
/
JavaScript-Templates
Public
forked from
blueimp/JavaScript-Templates
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript-Templates
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
71 lines (71 loc) · 1.78 KB
Breadcrumbs
JavaScript-Templates
/
package.json
Copy path
File metadata and controls
71 lines (71 loc) · 1.78 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
{
"name"
:
"
blueimp-tmpl
"
,
"version"
:
"
3.19.0
"
,
"title"
:
"
JavaScript Templates
"
,
"description"
:
"
1KB lightweight, fast & powerful JavaScript templating engine with zero dependencies. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers.
"
,
"keywords"
: [
"
javascript
"
,
"
templates
"
,
"
templating
"
],
"homepage"
:
"
https://github.com/blueimp/JavaScript-Templates
"
,
"author"
: {
"name"
:
"
Sebastian Tschan
"
,
"url"
:
"
https://blueimp.net
"
},
"repository"
: {
"type"
:
"
git
"
,
"url"
:
"
git://github.com/blueimp/JavaScript-Templates.git
"
},
"license"
:
"
MIT
"
,
"devDependencies"
: {
"chai"
:
"
4
"
,
"eslint"
:
"
7
"
,
"eslint-config-blueimp"
:
"
2
"
,
"eslint-config-prettier"
:
"
6
"
,
"eslint-plugin-jsdoc"
:
"
30
"
,
"eslint-plugin-prettier"
:
"
3
"
,
"mocha"
:
"
8
"
,
"prettier"
:
"
2
"
,
"uglify-js"
:
"
3
"
},
"eslintConfig"
: {
"extends"
: [
"
blueimp
"
,
"
plugin:jsdoc/recommended
"
,
"
plugin:prettier/recommended
"
],
"env"
: {
"browser"
:
true
,
"node"
:
true
}
},
"eslintIgnore"
: [
"
js/*.min.js
"
,
"
test/vendor
"
],
"prettier"
: {
"arrowParens"
:
"
avoid
"
,
"proseWrap"
:
"
always
"
,
"semi"
:
false
,
"singleQuote"
:
true
,
"trailingComma"
:
"
none
"
},
"scripts"
: {
"lint"
:
"
eslint .
"
,
"unit"
:
"
mocha
"
,
"test"
:
"
npm run lint && npm run unit
"
,
"build"
:
"
cd js && uglifyjs tmpl.js -c -m -o tmpl.min.js --source-map url=tmpl.min.js.map
"
,
"preversion"
:
"
npm test
"
,
"version"
:
"
npm run build && git add -A js
"
,
"postversion"
:
"
git push --tags origin master master:gh-pages && npm publish
"
},
"bin"
: {
"tmpl.js"
:
"
js/compile.js
"
},
"files"
: [
"
js/*.js
"
,
"
js/*.js.map
"
],
"main"
:
"
js/tmpl.js
"
}
Back
|
FazBrowse Home
|
New Git URL