-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 2.02 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
{
"name": "atom-ide-datatip",
"main": "./dist/main.js",
"version": "0.25.0",
"description": "A replacement for the Data Tooltip provider that was originally part of the Atom IDE package from Facebook.",
"keywords": [
"atom-package",
"atom-ide",
"datatip"
],
"repository": "https://github.com/atom-community/atom-ide-datatip",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"test": "npm run test.unit && npm run test.integration",
"test.unit": "npm run tsc && atom --test spec",
"test.integration": "npm run build && atom --test spec",
"clean": "shx rm -rf dist",
"tsc": "tsc -p ./lib/tsconfig.json",
"dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w",
"build": "npm run tsc -- --noEmit && npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c",
"build-commit": "build-commit -o dist",
"bump": "ncu -u",
"prepare": "npm run build"
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"package-deps": [
"busy-signal"
],
"dependencies": {
"atom-ide-base": "^3.0.0",
"atom-package-deps": "^7.2.3",
"solid-js": "^0.26.5"
},
"devDependencies": {
"@types/atom": "^1.40.10",
"@types/jasmine": "^3.7.7",
"@types/node": "^15.12.2",
"atom-jasmine3-test-runner": "^5.2.6",
"babel-preset-atomic": "^4.1.0",
"babel-preset-solid": "^0.26.5",
"build-commit": "^0.1.4",
"cross-env": "latest",
"eslint": "7.28.0",
"eslint-config-atomic": "^1.15.3",
"prettier-config-atomic": "^2.0.5",
"rollup-plugin-atomic": "^2.3.2",
"shx": "^0.3.3",
"typescript": "^4.3.2"
},
"atomTestRunner": "./spec/runner",
"prettier": "prettier-config-atomic",
"activationHooks": [
"core:loaded-shell-environment"
],
"providedServices": {
"datatip": {
"versions": {
"0.1.0": "provideDatatipService"
}
}
}
}