forked from jccguimaraes/project-viewer-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.13 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
80
81
82
83
84
{
"name": "project-viewer-plus",
"main": "./dist/index",
"version": "0.0.2",
"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.30.0",
"node": ">=8.9.3"
},
"scripts": {
"clean": "rimraf ./dist",
"icons": "node ./bin/file-icons",
"contribute": "all-contributors",
"linter:spec": "eslint ./spec",
"linter:lib": "eslint ./lib",
"pretest": "npm run linter:spec",
"test": "atom --test spec",
"precompile": "npm run clean",
"compile": "babel lib --out-dir dist",
"prewatch": "npm run clean",
"watch": "npm run linter:lib",
"postwatch": "babel --watch lib --out-dir dist"
},
"deserializers": {
"ProjectViewerPlus": "deserialize"
},
"atomTranspilers": [
{
"glob": "lib/**/*.js",
"transpiler": "atom-babel6-transpiler",
"options": {
"cacheKeyFiles": [
"package.json",
".babelrc"
]
}
}
],
"atomTestRunner": "./spec/runner",
"package-deps": [
"file-icons"
],
"dependencies": {
"atom-package-deps": "4.6.2",
"atom-select-list": "0.7.2",
"etch": "0.14.0",
"uuid": "3.3.2"
},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"all-contributors-cli": "5.4.1",
"atom-babel6-transpiler": "1.2.0",
"atom-mocha-test-runner": "^1.2.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-plugin-add-module-exports": "1.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"chai": "4.2.0",
"eslint": "5.7.0",
"file-icons": "git+https://github.com/file-icons/atom.git",
"prettier": "1.14.3",
"rimraf": "2.6.2",
"sinon": "7.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "npm run commitmsg"
}
}
}