UNPKG

1.15 kBJSONView Raw
1{
2 "name": "aspm",
3 "version": "0.1.3",
4 "description": "Atom-Shell Package Manager",
5 "main": "index.js",
6 "bin": {
7 "aspm": "bin/aspm"
8 },
9 "scripts": {
10 "pretest": "npm run clean",
11 "test": "mocha --reporter spec --require=coffee-script/register test/*.coffee",
12 "test-verbose": "mocha --reporter spec --require=coffee-script/register test/*.coffee --verbose",
13 "clean": "rm -rf tmp/",
14 "build": "coffee --bare --output lib --compile src"
15 },
16 "engines": {
17 "node": ">= 0.10.0"
18 },
19 "keywords": [
20 "atom-shell",
21 "package manager"
22 ],
23 "homepage": "https://github.com/bwin/aspm",
24 "author": {
25 "name": "Benjamin Winkler (bwin)"
26 },
27 "repository": {
28 "type": "git",
29 "url": "git://github.com/bwin/aspm.git"
30 },
31 "bugs": {
32 "url": "https://github.com/bwin/aspm/issues"
33 },
34 "license": "MIT",
35 "dependencies": {
36 "commander": "^2.5.0",
37 "node-gyp": "^1.0.2",
38 "queue-async": "^1.0.7",
39 "request": "^2.51.0",
40 "semver": "^4.1.0",
41 "terminal-colors": "^0.1.3"
42 },
43 "devDependencies": {
44 "chai": "^1.10.0",
45 "coffee-script": "^1.8.0",
46 "mocha": "^2.0.1"
47 }
48}