-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "satsuki",
"version": "0.1.0",
"description": "web photo organizer with a nice image editor",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha -r ts-node/register test/*.spec.ts",
"build-dev": "webpack --mode development",
"coverage": "nyc --reporter=html --reporter=text mocha -r ts-node/register test/*.spec.ts",
"coveralls": "nyc --reporter=text-lcov mocha -r ts-node/register test/*.spec.ts | npx coveralls"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"node_modules/**/*.js",
"coverage/**/*.js",
"build/**/*.js",
"webpack.config.js"
],
"reporter": [
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthurmco/satsuki.git"
},
"keywords": [
"photo",
"react",
"organizer",
"image-editor"
],
"author": "Arthur M",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/arthurmco/satsuki/issues"
},
"homepage": "https://github.com/arthurmco/satsuki#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.7",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.4",
"nyc": "^11.6.0",
"source-map-support": "^0.5.4",
"ts-loader": "^4.1.0",
"ts-node": "^5.0.1",
"typescript": "^2.7.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"types": "^0.1.1",
"webpack-serve": "^0.2.0"
},
"dependencies": {
"@types/jimp": "^0.2.28",
"@types/react": "^16.1.0",
"@types/react-dom": "^16.0.4",
"image-data-uri": "^1.0.1",
"jimp": "^0.2.28",
"react": "^16.3.0",
"react-dom": "^16.3.0"
}
}