-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "image-wife",
"version": "1.3.0",
"description": "A library for compile-time and runtime procedural modification of photographic images.",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist/* && cpy src/index.html dist && cpy \"images/*\" dist/images && node getImageFilepaths.js && webpack",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/furkleindustries/image-wife.git"
},
"keywords": [
"image",
"wife",
"procgen",
"photograph"
],
"author": "furkle",
"license": "MIT",
"bugs": {
"url": "https://github.com/furkleindustries/image-wife/issues"
},
"homepage": "https://github.com/furkleindustries/image-wife#readme",
"devDependencies": {
"@types/node": "^13.7.1",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"cpy-cli": "^3.1.0",
"file-loader": "^5.1.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"react-dom": "^16.12.0",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.1",
"typescript": "^3.8.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"react": "^16.12.0"
}
}