-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 862 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 862 Bytes
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
{
"name": "system-less",
"version": "0.1.0",
"description": "A systemjs/builder plugin to load/render LESS in browser on the fly and bundle rendered CSS during build time.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"systemjs",
"systemjs-builder",
"jspm",
"less",
"plugin",
"browser",
"bundle",
"css"
],
"author": "Jack Ma",
"license": "MIT",
"devDependencies": {
"jspm": "^0.16.15",
"systemjs-builder": "^0.14.11"
},
"jspm": {
"dependencies": {
"less": "npm:less@^2.5.3"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
},
"dependencies": {
"less": "^2.5.3",
"clean-css": "^3.4.8"
}
}