-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1003 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1003 Bytes
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
{
"name": "pixel-icon",
"version": "1.0.0",
"description": "The simplest pixel icon generator",
"main": "lib/pixel-icon.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config ./src/webpack.config.js",
"dev": "webpack-dev-server --config ./editor/webpack.config.js",
"build:docs": "webpack --config ./editor/webpack.config.js"
},
"author": "Blai Samitier <blai.samitier@gmail.com>",
"homepage": "https://samitier.github.io/pixel-icon/",
"keywords": [
"icons",
"pixel",
"simple"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Samitier/pixel-icon.git"
},
"license": "ISC",
"devDependencies": {
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.16.4",
"ts-loader": "^5.3.3",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}