-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "wrote",
"version": "1.4.0",
"description": "Promise-based writing to filesystem for Node.js",
"main": "src/index.js",
"scripts": {
"test": "zoroaster test/spec",
"test-es5": "zoroaster es5/test/spec",
"test-watch": "zoroaster test/spec --watch",
"tw": "npm run test-watch",
"build-src": "babel src --out-dir es5/src",
"build-test": "babel test --out-dir es5/test --ignore test/fixtures/directory-ln,test/fixtures/directory/subdirectory-ln,test/fixtures/directory/test-ln.data --copy-files",
"symlink-fixtures": "node symlink-fixtures",
"build": "run-s build-src build-test symlink-fixtures"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sobesednik/wrote.git"
},
"keywords": [
"write",
"wrote",
"written",
"promise"
],
"author": "Anton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sobesednik/wrote/issues"
},
"homepage": "https://github.com/Sobesednik/wrote#readme",
"devDependencies": {
"assert-diff": "1.2.4",
"babel-cli": "6.26.0",
"babel-plugin-transform-rename-import": "2.1.1",
"babel-preset-env": "1.6.1",
"fast-async": "6.3.0",
"noddy": "1.1.0",
"npm-run-all": "4.1.2",
"spawncommand": "1.1.0",
"zoroaster": "0.5.3"
},
"dependencies": {
"catchment": "2.0.1",
"makepromise": "1.1.1",
"restream": "1.2.0"
}
}