forked from nteract/archived-desktop-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.46 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"repository": {
"type": "git",
"url": "https://github.com/nteract/nteract.git"
},
"license": "BSD-3-Clause",
"scripts": {
"postinstall": "node scripts/check-deps.js && install-app-deps",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=development ./node_modules/electron/cli.js ./app/",
"prepublish": "npm run build",
"clean": "rimraf ./app/build dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prebuild": "rimraf ./app/build",
"build": "babel src --out-dir ./app/build",
"build:icon": "./scripts/make_icons.sh && cd static/icons && iconutil -c icns nteract.iconset && mv nteract.icns ../icon.icns",
"build:docs": "esdoc -c esdoc.json",
"build:watch": "npm run build -- --watch",
"test": "npm run test:unit",
"pretest:functional": "npm run build",
"sublaunch": "electron-mocha --compilers js:babel-core/register",
"test:functional:launch": "npm run sublaunch -- test/main/launch.js",
"test:functional:launchNewNotebook": "npm run sublaunch -- test/main/launchNewNotebook.js",
"test:functional": "npm run test:functional:launch && npm run test:functional:launchNewNotebook",
"test:coverage": "npm run coverage",
"test:unit": "cross-env NODE_PATH=app/node_modules/ mocha -r test/setup.js --compilers js:babel-core/register \"test/renderer/**/*.js\"",
"test:unit:individual": "cross-env NODE_PATH=app/node_modules/ mocha -r test/setup.js --compilers js:babel-core/register ",
"test:watch": "watch 'npm run test' test/",
"test:lint": "npm run lint",
"test:flow": "npm run flow",
"precoverage": "mkdirp coverage && nyc npm run test:unit",
"coverage": "cross-env NODE_PATH=app/node_modules/ nyc report --reporter=text-lcov > coverage/lcov.info",
"pack": "npm install && npm run clean && npm run build && build --dir",
"dist": "npm install && npm run clean && npm run build && build",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"diagnostics": "app/diagnostics/kernelspecs.js"
},
"build": {
"electronVersion": "1.4.3",
"appId": "io.nteract.nteract",
"fileAssociations": {
"ext": "ipynb",
"name": "ipynb"
},
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": "nsis"
}
},
"greenkeeper": {
"ignore": [
"commonmark",
"redux-observable"
]
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015-node6": "^0.3.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.4.1",
"chai-immutable": "^1.6.0",
"colors": "^1.1.2",
"command-exists": "^1.0.2",
"cross-env": "^3.1.3",
"electron": "1.4.3",
"electron-builder": "^7.13.0",
"electron-mocha": "^3.0.6",
"electron-react-devtools": "^0.4.0",
"enzyme": "^2.2.0",
"esdoc": "^0.4.8",
"eslint": "^3.8.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.3.0",
"flow-bin": "^0.33.0",
"jsdom": "^9.4.2",
"jsx-chai": "^4.0.0",
"mocha": "^3.0.2",
"mock-require": "^1.3.0",
"nyc": "^8.3.0",
"react-addons-test-utils": "^15.3.2",
"react-dnd-test-backend": "^1.0.2",
"rimraf": "^2.5.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"watch": "^1.0.0"
}
}