-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "npm-run-parallel",
"version": "0.6.0",
"description": "Run npm tasks in parallel and exit when they are all done.",
"bin": "index.js",
"scripts": {
"build": "babel $npm_package_config_source_dir -d $npm_package_config_output_dir",
"lint": "npm run lint:eslint",
"lint:fix": "npm run lint:eslint:fix",
"lint:eslint": "eslint $npm_package_config_source_dir",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"prepare": "npm run build",
"start": "node $npm_package_main",
"test": "mocha --compilers js:babel-register $npm_package_config_tests --require $npm_package_config_test_helpers",
"test:watch": "npm test -- --watch",
"watch": "npm run build -- --watch",
"__test_fixture__": "echo",
"__test_fixture_2__": "echo"
},
"config": {
"source_dir": "lib",
"tests": "test/*.js",
"test_helpers": "test-helpers/*.js",
"output_dir": "dist"
},
"keywords": [
"npm",
"run",
"script",
"scripts",
"task",
"tasks",
"parallel",
"stream",
"concurrent"
],
"author": "Ian McNally <[email protected]>",
"license": "ISC",
"dependencies": {
"meow": "^3.7.0",
"rx": "^4.0.8",
"rx-node": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"eslint": "^2.2.0",
"execa": "^0.2.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
}
}