-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 884 Bytes
/
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
{
"name": "albert-svg",
"version": "0.1.2",
"description": "Dynamic SVG generation using Cassowary constraints",
"repository": "evoL/albert",
"main": "dist/albert.js",
"module": "src/index.js",
"dependencies": {
"cassowary": "0.0.2"
},
"devDependencies": {
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.2.1"
},
"scripts": {
"build": "webpack",
"build-release": "webpack --mode development && webpack --mode production --output-filename albert.min.js && rm dist/*.map",
"start": "webpack-dev-server --mode development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"svg",
"cassowary",
"constraints"
],
"author": "Rafał Hirsz (rafal@hirsz.co)",
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
}
}