-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.92 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
{
"name": "spinr",
"version": "0.0.4",
"description": "Minimalist Task Runner for Node",
"author": "Remi Barraquand",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/barraq/spinr.git"
},
"bin": {
"spin": "./bin/spinr.js"
},
"files": [
"dist",
"bin"
],
"main": "dist/index.js",
"scripts": {
"lint": "eslint lib/**",
"build": "rimraf dist && babel lib --out-dir dist --source-maps",
"build:watch": "rimraf dist && babel lib --out-dir dist --watch --source-maps",
"pretest": "yarn run lint",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls --verbose",
"prepublish": "yarn run build"
},
"babel": {
"presets": [
"node6"
],
"plugins": [
"transform-async-to-generator",
"transform-object-rest-spread"
]
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"import/no-dynamic-require": "off",
"global-require": "off"
},
"env": {
"node": true,
"jest": true
}
},
"jest": {
"testRegex": "/spec/lib/.*\\.spec\\.js$"
},
"dependencies": {
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.18.0",
"chalk": "^1.1.3",
"liftoff": "^2.3.0",
"minimist": "^1.2.0",
"stream-to-promise": "^2.2.0",
"subdir": "^0.0.3",
"tildify": "^1.2.0",
"yargs": "^6.5.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.5",
"jest": "^18.0.0",
"rimraf": "^2.5.4",
"strip-ansi": "^3.0.1"
},
"engines": {
"node": ">=6.0.0"
}
}