-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
107 lines (107 loc) · 3.25 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "systemjs-less-plugin",
"version": "2.2.3",
"description": "Loads less files on the fly, and compiles them at build time",
"main": "less.js",
"registry": "github",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/HuasoFoundries/systemjs-less-plugin.git"
},
"keywords": [
"systemjs",
"jspm",
"less",
"loader"
],
"author": "Felipe Figueroa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HuasoFoundries/systemjs-less-plugin/issues"
},
"engines": {
"node": "6.10.x"
},
"homepage": "https://github.com/HuasoFoundries/systemjs-less-plugin#readme",
"dependencies": {
"jspm": "^0.17.0-beta.41"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.6.1",
"eslint": "^4.5.0",
"less": "^2.7.2",
"mocha": "^3.5.0"
},
"jspm": {
"main": "less.js",
"directories": {
"lib": "src"
},
"dependencies": {},
"devDependencies": {
"assert": "npm:jspm-nodelibs-assert@^0.2.0",
"bcrypt-pbkdf": "npm:bcrypt-pbkdf@^1.0.0",
"buffer": "npm:jspm-nodelibs-buffer@^0.2.0",
"child_process": "npm:jspm-nodelibs-child_process@^0.2.0",
"constants": "npm:jspm-nodelibs-constants@^0.2.0",
"crypto": "npm:jspm-nodelibs-crypto@^0.2.0",
"dgram": "npm:jspm-nodelibs-dgram@^0.2.0",
"dns": "npm:jspm-nodelibs-dns@^0.2.0",
"domain": "npm:jspm-nodelibs-domain@^0.2.0",
"ecc-jsbn": "npm:ecc-jsbn@~0.1.1",
"errno": "npm:errno@^0.1.1",
"events": "npm:jspm-nodelibs-events@^0.2.0",
"fs": "npm:jspm-nodelibs-fs@^0.2.0",
"graceful-fs": "npm:graceful-fs@^4.1.2",
"http": "npm:jspm-nodelibs-http@^0.2.0",
"https": "npm:jspm-nodelibs-https@^0.2.0",
"image-size": "npm:[email protected]",
"jodid25519": "npm:jodid25519@^1.0.0",
"jsbn": "npm:[email protected]",
"lessjs": "npm:less@^2.7.2",
"mime": "npm:mime@^1.2.11",
"mkdirp": "npm:mkdirp@^0.5.0",
"net": "npm:jspm-nodelibs-net@^0.2.0",
"os": "npm:jspm-nodelibs-os@^0.2.0",
"path": "npm:jspm-nodelibs-path@^0.2.0",
"process": "npm:jspm-nodelibs-process@^0.2.0",
"promise": "npm:promise@^7.1.1",
"querystring": "npm:jspm-nodelibs-querystring@^0.2.0",
"request": "npm:request@^2.72.0",
"source-map": "npm:source-map@^0.5.3",
"stream": "npm:jspm-nodelibs-stream@^0.2.0",
"string_decoder": "npm:jspm-nodelibs-string_decoder@^0.2.0",
"tls": "npm:jspm-nodelibs-tls@^0.2.0",
"tty": "npm:jspm-nodelibs-tty@^0.2.0",
"tweetnacl": "npm:[email protected]",
"url": "npm:jspm-nodelibs-url@^0.2.0",
"util": "npm:jspm-nodelibs-util@^0.2.0",
"vm": "npm:jspm-nodelibs-vm@^0.2.0",
"zlib": "npm:jspm-nodelibs-zlib@^0.2.0"
},
"peerDependencies": {
"css": "systemjs/plugin-css@^0.1.36"
},
"overrides": {
"npm:[email protected]": {
"dependencies": {
"readable-stream": "^2.0.2",
"pako": "~0.2.0"
},
"map": {
"_stream_transform": "readable-stream/transform"
}
},
"npm:[email protected]": {
"ignore": [
"test.js"
]
}
}
}
}