This repository has been archived by the owner on Jun 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.45 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
{
"name": "atom-javascript-languageserver",
"version": "0.1.0",
"description": "JavaScript language server from the Atom team",
"repository": "https://github.com/atom/atom-javascript-languageserver",
"license": "MIT",
"main": "./build/lib/main",
"scripts": {
"clean": "rm -rf build",
"compile": "babel lib --out-dir build/lib && babel test --out-dir build/test",
"prepublish": "npm run clean && npm run compile",
"test": "npm run compile && atom --test build/test",
"watch": "babel lib --out-dir build/lib -w"
},
"dependencies": {
"eslint": "^3.19.0",
"vscode-languageserver": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "6.22.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-async-to-generator": "6.22.0",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-do-expressions": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.23.0",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-function-bind": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"mocha": "^3.2.0",
"mocha-appveyor-reporter": "^0.3.0",
"sinon": "^2.0.0"
}
}