forked from pnpm/pnpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.17 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
82
83
84
85
86
87
88
89
{
"name": "pnpm",
"description": "A fast implementation of npm install",
"version": "0.18.0",
"author": "Rico Sta. Cruz <[email protected]>",
"bin": {
"pnpm": "bin/pnpm",
"pnpm-install": "bin/pnpm-install"
},
"bugs": {
"url": "https://github.com/rstacruz/pnpm/issues"
},
"files": [
"lib",
"bin"
],
"dependencies": {
"bluebird": "3.3.1",
"byline": "4.2.1",
"chalk": "1.1.1",
"commondir": "1.0.1",
"debug": "2.2.0",
"got": "5.4.1",
"gunzip-maybe": "1.3.1",
"meow": "3.7.0",
"mkdirp": "0.5.1",
"mz": "2.3.1",
"node-gyp": "3.3.0",
"node-uuid": "1.4.7",
"npm-package-arg": "4.1.0",
"object-assign": "4.0.1",
"observatory": "1.0.0",
"rc": "1.1.6",
"read-pkg-up": "1.0.1",
"registry-url": "3.0.3",
"rimraf": "2.5.2",
"semver": "5.1.0",
"sorted-object": "^1.0.0",
"supports-color": "^3.1.2",
"tar-fs": "1.10.0",
"thenify": "3.1.1",
"throat": "2.0.2"
},
"devDependencies": {
"babel-cli": "6.4.5",
"babel-plugin-transform-es2015-arrow-functions": "6.5.0",
"babel-plugin-transform-es2015-literals": "6.3.13",
"docpress": "0.6.11",
"eslint": "1.10.3",
"eslint-config-standard": "4.4.0",
"eslint-plugin-standard": "1.3.2",
"git-update-ghpages": "1.3.0",
"in-publish": "2.0.0",
"nixt": "0.5.0",
"npm": "3.7.1",
"sepia": "2.0.1",
"tap-spec": "4.1.1",
"tape": "4.4.0",
"tape-eslint": "1.2.1"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/rstacruz/pnpm#readme",
"keywords": [
"install",
"npm"
],
"license": "MIT",
"main": "index.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/rstacruz/pnpm.git"
},
"scripts": {
"build": "if [ ! -d lib~ ]; then mv lib lib~; babel --source-maps inline -D lib~ -d lib; fi",
"test": "node test | tap-spec",
"test:babel": "babel-node test | tap-spec",
"prepublish": "if in-publish; then npm run build; fi",
"postpublish": "rm -rf lib; mv lib~ lib"
},
"babel": {
"plugins": [
"transform-es2015-arrow-functions",
"transform-es2015-literals"
]
}
}