-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.16 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
{
"name": "vorpal-less",
"version": "0.0.13",
"description": "Less implementation for Vorpal.js",
"main": "./dist/less.js",
"scripts": {
"test": "mocha && xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vorpaljs/vorpal-less.git"
},
"keywords": [
"less",
"api",
"cli",
"immersive",
"repl",
"vorpal",
"vorpaljs",
"posix"
],
"author": "dthree",
"license": "MIT",
"bugs": {
"url": "https://github.com/vorpaljs/vorpal-less/issues"
},
"homepage": "https://github.com/vorpaljs/vorpal-less#readme",
"devDependencies": {
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-changed": "^1.3.0",
"mocha": "^2.3.3",
"should": "^7.1.0",
"vorpal": "*",
"vorpal-hacker-news": "^1.0.6",
"xo": "^0.9.0"
},
"dependencies": {
"slice-ansi": "0.0.3"
},
"engines": {
"node": ">= 0.11.16",
"iojs": ">= 1.0.0"
},
"files": [
"dist"
],
"xo": {
"envs": [
"node",
"mocha"
],
"esnext": true,
"space": true,
"rules": {
"no-unused-expressions": 0,
"prefer-arrow-callback": 0,
"prefer-reflect": 0
}
}
}