-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·56 lines (56 loc) · 1.48 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
{
"name": "steamer-plugin-kit",
"version": "3.0.0",
"description": "steamer-plugin-kit",
"main": "index.js",
"bin": "index.js",
"scripts": {
"lint": "eslint index.js libs/*.js",
"test": "npm run lint && mocha ./test/test.js",
"cover": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha ./test/test.js --compilers js:babel-core/register --bail --sort --reporter dot",
"travis": "npm run cover -- --report lcovonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steamerjs/steamer-plugin-kit.git"
},
"keywords": [
"steamer",
"kit"
],
"author": "heyli",
"license": "MIT",
"bugs": {
"url": "https://github.com/steamerjs/steamer-plugin-kit/issues"
},
"homepage": "https://github.com/steamerjs/steamer-plugin-kit#readme",
"dependencies": {
"compare-versions": "^3.2.1",
"cross-spawn": "^6.0.5",
"inquirer": "^5.2.0",
"klaw": "^2.1.1",
"klaw-sync": "^4.0.0",
"lodash": "^4.17.10",
"ora": "^2.1.0",
"rxjs": "^5.5.2",
"simple-git": "^1.100.0",
"steamer-plugin": "^1.0.4"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"bluebird": "^3.5.1",
"codecov.io": "^0.1.6",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-alloy": "^1.4.2",
"expect.js": "^0.3.1",
"fs-extra": "^6.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"sinon": "^5.1.0"
},
"engines": {
"node": ">=6.4.0"
}
}