This repository has been archived by the owner on Oct 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.81 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
{
"name": "Negative",
"version": "0.10.3",
"description": "An app for making visual comparisons.",
"main": "lib/main.js",
"repository": "https://github.com/atdrago/negative.git",
"license": "MIT",
"scripts": {
"start": "export NODE_ENV=development && export ELECTRON_ENABLE_LOGGING=true && export ELECTRON_ENABLE_STACK_DUMPING=true && export NEGATIVE_VERBOSE=false && ./node_modules/.bin/electron .",
"prebuild": "rm -rf dist",
"build": "./node_modules/.bin/gulp release && mkdir -p ./release/node_modules && npm install --production --prefix ./release/ && ./node_modules/.bin/gulp build",
"build-sign": "npm run build && ./scripts/sign-osx.sh",
"build-artifacts": "npm run build-sign && ./scripts/artifacts.sh",
"open": "open ./dist/Negative-darwin-x64/Negative.app",
"postinstall": "./node_modules/.bin/electron-rebuild",
"lint": "./node_modules/.bin/gulp js:lint",
"test": "./node_modules/.bin/mocha --recursive",
"travis": "npm run build-sign && npm test"
},
"author": "Adam Drago <atdrago+negative@gmail.com>",
"bugs": {
"url": "https://github.com/atdrago/negative/issues"
},
"dependencies": {
"electron-window": "^0.8.1",
"negative-screenshot": "^2.0.3",
"simple-undo": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"del": "^2.2.0",
"devtron": "^1.1.2",
"electron": "^1.7.9",
"electron-packager": "^9.1.0",
"electron-rebuild": "^1.6.0",
"gulp": "^3.9.1",
"gulp-changed": "^1.3.0",
"gulp-clean-css": "^2.0.6",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^2.0.0",
"gulp-sass": "^2.3.1",
"gulp-watch": "^4.3.5",
"gulp-wrap": "^0.11.0",
"mocha": "^2.4.5",
"run-sequence": "^1.1.5",
"spectron": "^3.7.0",
"yargs": "^4.7.1"
},
"engines": {
"node": ">=8.x"
},
"os": [
"darwin"
]
}