-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.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
{
"name": "brandifyjs",
"version": "1.1.0",
"description": "Text transformer/replacer with SVG icons for popular brands",
"main": "src/index.js",
"scripts": {
"init": "node src/init.js",
"coverage": "istanbul cover _mocha",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"test": "mocha",
"dev": "lite-server",
"browserify": "browserify -t package-json-versionify --standalone brandify src/index.js | uglifyjs --compress --mangle -o dist/brandifyjs-browser.js",
"browserify-dev": "browserify -t package-json-versionify --standalone brandify src/index.js -o dist/brandifyjs-browser.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greybax/brandifyjs.git"
},
"keywords": [
"tool",
"simple-icons",
"brand",
"brands",
"branding",
"logo",
"logos",
"replacer",
"svg",
"company",
"company-logo",
"icon-assets",
"assets"
],
"author": {
"name": "Aleksandr Filatov",
"email": "greybax@gmail.com",
"url": "https://alfilatov.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/greybax/brandifyjs/issues"
},
"homepage": "https://github.com/greybax/brandifyjs#readme",
"dependencies": {
"is-html": "^2.0.0"
},
"devDependencies": {
"simple-icons": "3.6.1",
"browserify": "16.5.1",
"chai": "4.2.0",
"chai-files": "1.4.0",
"coveralls": "3.1.0",
"istanbul": "0.4.5",
"lite-server": "2.5.4",
"mocha": "8.1.1",
"mocha-lcov-reporter": "1.3.0",
"package-json-versionify": "1.0.4",
"uglify-es": "3.3.9"
}
}