-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "ember-oracle",
"version": "0.1.0",
"description": "A server for navigating an ember-cli codebase",
"main": "dist/bin/server.js",
"repository": {
"type": "git",
"url": "https://github.com/bestra/ember-oracle.git"
},
"scripts": {
"prepublish": "npm run build",
"postinstall": "scripts/vim-prompt",
"start": "node dist/bin/server.js",
"test": "node_modules/.bin/mocha ./dist/test/index.js",
"typescript-version": "node_modules/.bin/tsc -v",
"watch": "node_modules/.bin/tsc -w -p .",
"build": "node_modules/.bin/tsc -p .",
"test-watch": "node_modules/.bin/mocha --watch ./dist/test/index.js"
},
"bin": {
"ember-oracle-start-server": "dist/bin/server.js",
"ember-oracle-call-server": "scripts/cli"
},
"files": [
"dist",
"vim",
"emacs",
"scripts",
"README.md"
],
"author": "Chris Westra <cwestra@gmail.com> https://github.com/bestra",
"license": "ISC",
"dependencies": {
"babel-core": "^5.8.38",
"graphlib": "^2.1.1",
"htmlbars": "^0.14.16",
"koa": "^2.0.0",
"koa-router": "^7.0.1",
"lodash": "^4.8.2",
"prettier": "^1.4.1",
"progress": "^1.1.8",
"recast": "^0.11.3",
"walk-sync": "^0.2.6"
},
"devDependencies": {
"@types/estree": "0.0.34",
"@types/graphlib": "^2.1.4",
"@types/koa": "0.0.0",
"@types/koa-router": "^7.0.21",
"@types/lodash": "^4.14.63",
"@types/mocha": "^2.2.33",
"@types/node": "0.0.2",
"@types/progress": "^1.1.28",
"mocha": "^2.4.5",
"testdouble": "^1.4.1",
"typescript": "^2.4"
}
}