-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
81 lines (81 loc) · 2.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ied",
"version": "2.3.6",
"bin": {
"ied": "lib/cmd.js"
},
"dependencies": {
"easy-table": "^1.0.0",
"force-symlink": "0.0.2",
"gunzip-maybe": "^1.3.1",
"init-package-json": "^1.9.4",
"lodash.frompairs": "^4.0.1",
"lodash.memoize": "^4.1.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"needle": "1.0.0",
"node-gyp": "^3.4.0",
"node-pre-gyp": "^0.6.29",
"node-uuid": "^1.4.7",
"npm-package-arg": "^4.2.0",
"ora": "^0.2.3",
"rimraf": "^2.5.3",
"rxjs": "5.0.0-rc.1",
"semver": "^5.2.0",
"source-map-support": "^0.4.1",
"tar-fs": "^1.13.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"cross-env": "^2.0.0",
"esdoc": "^0.4.7",
"esdoc-es7-plugin": "0.0.3",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.10.2",
"mocha": "^2.5.3",
"nyc": "^6.6.1",
"resolve": "^1.1.7",
"rimraf": "^2.5.3",
"sinon": "^1.17.4"
},
"scripts": {
"start": "npm run test:spec -- --watch",
"test": "npm run test:spec && npm run test:e2e",
"test:e2e": "rimraf .tmp/test/*; cross-env NODE_ENV=test mocha test/e2e",
"test:spec": "cross-env NODE_ENV=test mocha test/spec",
"test:coverage": "nyc --reporter=lcov npm run test:spec -- --reporter dot && nyc report",
"compile": "rimraf lib/*; cross-env NODE_ENV=production babel src/ -d lib/",
"compile:watch": "npm run compile -- -w",
"dev": "rimraf lib/*; cross-env NODE_ENV=development babel src/ -d lib/ -s",
"dev:watch": "npm run dev -- -w",
"lint": "eslint src/ test/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanderGugel/ied.git"
},
"author": "Alexander Gugel <alexander.gugel@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexanderGugel/ied/issues"
},
"homepage": "https://github.com/alexanderGugel/ied#readme",
"description": "An alternative package manager for Node.",
"files": [
"lib",
"USAGE.txt"
],
"nyc": {
"sourceMap": false,
"instrument": false
}
}