-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "solargraph-utils",
"version": "1.2.0",
"description": "Utilities for interacting with Solargraph",
"main": "out/index.js",
"typings": "out/index",
"files": [
"out/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/castwide/solargraph-utils.git"
},
"scripts": {
"compile": "tsc -p ./src",
"watch": "tsc -w -p ./src",
"test": "npm run compile && node ./node_modules/mocha/bin/mocha --timeout 15000 -u tdd ./out/tests/*.js"
},
"author": "Castwide",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^6.0.40",
"chai": "^4.0.2",
"mocha": "^9.2.0",
"typescript": "^2.4.1"
},
"dependencies": {
"file-url": "^2.0.2",
"html2plaintext": "^1.1.0",
"request": "^2.88.0",
"ruby-spawn": "^1.3.0",
"uri-path": "^1.0.0"
}
}