This repository has been archived by the owner on Apr 8, 2020. It is now read-only.
forked from SamyPesse/gitkit-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "virtualgit",
"version": "1.0.0",
"description": "In-memory Git",
"keywords": [
"git"
],
"author": "Roger Qiu",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MatrixAI/js-virtualgit.git"
},
"main": "dist/index.node.cjs.js",
"module": "dist/index.node.es.js",
"browser": "dist/index.browser.umd.js",
"scripts": {
"test": "ava -v",
"doc": "documentation build ./lib/** -f html -o ./doc",
"rollup": "rollup --config",
"dos2unix": "dos2unix dist/*",
"build": "npm test && npm run doc && npm run rollup && npm run dos2unix"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"engines": {
"node": ">=6.4.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.26.0",
"babel-plugin-rewire": "^1.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"buffer": "^5.0.8",
"common-tags": "^1.4.0",
"documentation": "^5.3.3",
"events": "^1.1.1",
"path": "^0.12.7",
"process": "^0.11.10",
"rollup": "^0.51.5",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"chevrotain": "^0.35.0",
"micromatch": "^3.1.4",
"virtualfs": "^2.0.1"
}
}