forked from n-peugnet/image-map-creator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "image-map-creator",
"version": "1.1.7",
"description": "This is a simple map creator tool made with the p5.js library. I want it\r to be easy to use for both the end user and the developper.",
"main": "dist/image-map-creator.bundle.js",
"types": "dist/src/p5.image-map-creator.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --env dev --watch",
"build": "webpack --env dev",
"dist": "npm run clean && webpack --env prod",
"clean": "rm -rf dist",
"release": "dotenv release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n-peugnet/image-map-creator.git"
},
"release-it": {
"hooks": {
"after:bump": "npm run dist"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"assets": [
"dist/*.js"
]
}
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/n-peugnet/image-map-creator/issues"
},
"homepage": "https://github.com/n-peugnet/image-map-creator#readme",
"devDependencies": {
"@types/downloadjs": "^1.4.1",
"@types/p5": "^0.7.2",
"css-loader": "^1.0.1",
"dotenv-cli": "^2.0.0",
"release-it": "^12.4.1",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"typescript": "^3.4.4",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"downloadjs": "^1.4.7",
"quicksettings": "^3.0.1",
"undo-manager": "^1.0.5"
}
}