This repository has been archived by the owner on Dec 10, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.3 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
73
74
75
76
77
78
79
{
"name": "project-viewer-plus",
"main": "./lib/index",
"version": "0.0.11",
"description": "Manage all your projects into different groups.",
"keywords": [
"project",
"productivity",
"management",
"settings",
"workflow"
],
"repository": "https://github.com/jccguimaraes/project-viewer-plus",
"license": "MIT",
"engines": {
"atom": ">=1.40.0",
"node": ">=10.2.0"
},
"scripts": {
"icons": "node ./bin/file-icons",
"contribute": "all-contributors",
"linter": "eslint test lib",
"pretest": "npm run linter",
"test": "cross-env-shell NODE_ENV=development \"${ATOM_SCRIPT_PATH:-atom} --test test\"",
"test:coverage": "cross-env ATOM_GITHUB_BABEL_ENV=coverage npm run test",
"test:coverage:text": "nyc --reporter=text npm run test:coverage",
"test:coverage:html": "nyc --reporter=html npm run test:coverage",
"test:coverage:lcov": "npm run test:coverage",
"report:coverage": "nyc report --reporter=cobertura --reporter=html --reporter=lcovonly",
"codecov": "codecov"
},
"deserializers": {
"project-viewer-plus/mainView": "deserializeProjectViewerPlusView"
},
"atomTestRunner": "./test/runner",
"atomTranspilers": [
{
"glob": "{lib,test}/**/*.js",
"transpiler": "@atom/babel7-transpiler",
"options": {
"cacheKeyFiles": [
"package.json",
".babelrc.js",
".nycrc.json"
],
"setBabelEnv": "ATOM_GITHUB_BABEL_ENV"
}
}
],
"package-deps": [
"file-icons"
],
"dependencies": {
"@atom/babel7-transpiler": "^1.0.0-1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"atom-package-deps": "^5.1.0",
"atom-select-list": "^0.7.2",
"etch": "^0.14.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@atom/mocha-test-runner": "^1.6.0",
"@commitlint/cli": "^8.1.0",
"all-contributors-cli": "^6.8.1",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"eslint": "^6.2.2",
"file-icons": "git+https://github.com/file-icons/atom#v2.1.35",
"husky": "^3.0.4",
"nyc": "^14.1.1",
"sinon": "^7.4.1"
}
}