forked from teambit/bit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.81 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
90
91
{
"name": "bit-bin",
"version": "0.4.1",
"license": "Apache-2.0",
"main": "./dist/api.js",
"scripts": {
"dev-link": "node ./scripts/establish-dev-link.js $1",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint": "gulp lint && flow check",
"test": "gulp test",
"build": "babel src specs -d dist",
"watch": "babel watch bin src specs -d dist --source-maps",
"build-debug": "babel src specs -d dist --source-maps",
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build",
"docs:publish": "npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push [email protected]:teambit/bit gh-pages --force"
},
"bin": {
"bit": "bin/bit.js"
},
"repository": {
"type": "git",
"url": "https://github.com/teambit/bit"
},
"dependencies": {
"bit-js": "^0.2.0",
"buffer-from": "^0.1.1",
"camelcase": "^4.0.0",
"chalk": "^1.1.3",
"cli-spinners": "^1.0.0",
"cli-table2": "^0.2.0",
"commander": "^2.9.0",
"doctrine": "^2.0.0",
"fs-extra": "^1.0.0",
"fstream": "^1.0.10",
"glob": "^7.1.1",
"is-array-buffer-x": "^1.0.13",
"jfs": "^0.2.6",
"loud-rejection": "^1.6.0",
"mkdirp": "^0.5.1",
"mockery": "^2.0.0",
"needle": "^1.4.3",
"npmi": "^2.0.1",
"ora": "^1.1.0",
"porter-stemmer": "^0.9.1",
"ramda": "^0.23.0",
"requestify": "^0.2.5",
"roadrunner": "^1.1.0",
"search-index": "^0.9.15",
"semver": "^5.3.0",
"serialize-error": "^2.1.0",
"ssh2": "^0.5.4",
"user-home": "^2.0.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-inline-imports-commonjs": "^1.2.0",
"babel-preset-env": "^1.2.0",
"chai": "^3.5.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-airbnb-flow": "^1.0.2",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"flow-bin": "^0.41.0",
"gitbook-cli": "^2.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-eslint": "^3.0.1",
"gulp-flowtype": "^1.0.0",
"gulp-mocha": "^3.0.1",
"gulp-newer": "^1.3.0",
"gulp-sourcemaps": "^2.2.0",
"gulp-sync": "^0.1.4",
"run-sequence": "^1.2.2",
"sinon": "^1.17.7"
},
"optionalDependencies": {
"posix": "^4.1.1"
},
"installationMethod": "tar"
}