-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "fs-web",
"version": "1.0.1",
"description": "Node's fs, for the browser",
"main": "dist/cjs/fs.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "node build.js",
"test": "DEBUG=testee:* testee test/index.html --browsers firefox --reporter Spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewp/fs.git"
},
"keywords": [
"fs",
"web"
],
"author": "Matthew Phillips",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/matthewp/fs/issues"
},
"homepage": "https://github.com/matthewp/fs#readme",
"devDependencies": {
"chai": "^3.4.1",
"steal": "^0.12.7",
"steal-mocha": "0.0.3",
"steal-tools": "^0.12.3",
"testee": "^0.2.2"
},
"dependencies": {
"path": "git://github.com/component/path#7b4f23c38833a5232cd5e3d50ccb8cd13dbcd2f4"
},
"system": {
"main": "fs",
"directories": {
"lib": "lib"
},
"map": {
"chai": "chai/chai"
},
"transpiler": "babel"
}
}