-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 3.97 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "athena-ide-atom",
"main": "./dist/athena-ide-atom.js",
"version": "0.5.2",
"description": "A package for writing smart contract in aergo using atom ide",
"scripts": {
"postinstall": "npm-run-all rebuild:*:*",
"rebuild:win32:atom1.28.0": "npm rebuild --runtime=electron --target=2.0.0 --target_arch=x64 --target_libc=unknown --target_platform=win32 grpc",
"rebuild:win32:atom1.39.0": "npm rebuild --runtime=electron --target=3.1.1 --target_arch=x64 --target_libc=unknown --target_platform=win32 grpc",
"rebuild:win32:atom1.41.0": "npm rebuild --runtime=electron --target=4.2.0 --target_arch=x64 --target_libc=unknown --target_platform=win32 grpc",
"rebuild:osx:atom1.28.0": "npm rebuild --runtime=electron --target=2.0.0 --target_arch=x64 --target_libc=unknown --target_platform=darwin grpc",
"rebuild:osx:atom1.39.0": "npm rebuild --runtime=electron --target=3.1.1 --target_arch=x64 --target_libc=unknown --target_platform=darwin grpc",
"rebuild:osx:atom1.41.0": "npm rebuild --runtime=electron --target=4.2.0 --target_arch=x64 --target_libc=unknown --target_platform=darwin grpc",
"rebuild:linux:atom1.28.0": "npm rebuild --runtime=electron --target=2.0.0 --target_arch=x64 --target_libc=glibc --target_platform=linux grpc",
"rebuild:linux:atom1.39.0": "npm rebuild --runtime=electron --target=3.1.1 --target_arch=x64 --target_libc=glibc --target_platform=linux grpc",
"rebuild:linux:atom1.41.0": "npm rebuild --runtime=electron --target=4.2.0 --target_arch=x64 --target_libc=glibc --target_platform=linux grpc",
"lint": "eslint --fix ./src",
"test": "npm run lint && mocha --exit --require @babel/register --recursive",
"dev": "npm run test && rollup -c ./scripts/rollup.config.js -w --environment NODE_ENV:development",
"build": "npm run test && rollup -c ./scripts/rollup.config.js --environment BUILD:production",
"archive": "./scripts/make-bin.sh"
},
"repository": "https://github.com/aergoio/athena-ide-atom",
"keywords": [
"aergo",
"smart contract",
"lua"
],
"author": "aergo team and contributors",
"bugs": {
"url": "https://github.com/aergoio/athena-ide-atom/issues"
},
"homepage": "https://github.com/aergoio/athena-ide-atom#readme",
"license": "MIT",
"engines": {
"atom": ">=1.28.0 <=2.0.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
},
"linter": {
"versions": {
"2.0.0": "getLinter"
}
}
},
"package-deps": [
"linter:2.3.0",
"linter-ui-default:1.7.0"
],
"deserializers": {
"RootStore": "deserializeStores"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.16.0",
"mocha": "^6.2.2",
"rollup": "^1.25.2",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0"
},
"dependencies": {
"@aergo/athena-analysis": "0.1.2",
"@aergo/athena-client": "0.2.1",
"@aergo/athena-compiler": "0.2.0",
"atom-package-deps": "^5.1.0",
"clipboardy": "^2.1.0",
"lodash": "^4.17.15",
"loglevel": "^1.6.4",
"mobx": "^5.14.2",
"mobx-react": "^6.1.4",
"npm-run-all": "^4.1.5",
"react": "^16.11.0",
"react-collapsible": "^2.6.0",
"react-dom": "^16.11.0",
"react-dropdown": "^1.6.4",
"reactjs-popup": "^1.5.0",
"reflexbox": "^3.0.1",
"universal-analytics": "^0.4.20",
"uuid": "^3.3.3",
"validator": "^11.1.0"
}
}