-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
35 lines (35 loc) · 864 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
{
"name": "npm-http-server",
"version": "1.0.0",
"description": "An HTTP server for files in npm packages",
"author": "Michael Jackson",
"config": {
"registryURL": "https://registry.npmjs.org",
"port": 5000
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && mocha -r babel-core/register modules/**/*-test.js"
},
"dependencies": {
"babel": "^6.0.15",
"babel-core": "^6.1.2",
"babel-preset-es2015": "^6.1.2",
"express": "^4.13.3",
"gunzip-maybe": "^1.2.1",
"lru-cache": "^2.7.0",
"mime": "^1.3.4",
"mkdirp": "^0.5.1",
"os-tmpdir": "^1.0.1",
"request": "^2.65.0",
"semver": "^5.0.3",
"tar-fs": "^1.8.1"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"eslint": "^1.7.3",
"eslint-plugin-react": "^3.6.3",
"expect": "^1.12.2",
"mocha": "^2.3.3"
}
}