forked from geelen/jspm-loader-css
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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": "jspm-loader-css",
"main": "index.js",
"version": "1.0.2",
"description": "A CSS Modules + PostCSS plugin loader for JSPM.",
"dependencies": {
"css-modules-loader-core": "^1.0.0-beta2",
"cssnano": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.6.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"chai-fs": "^1.0.0",
"eslint": "^2.3.0",
"mocha": "^3.2.0",
"mocha-lazy-bdd": "^0.1.2",
"rimraf": "^2.6.1",
"systemjs-builder": "^0.16.4"
},
"scripts": {
"bin": "$@",
"setup": "cd test/example && jspm install && jspm link ../../",
"test": "mocha -u mocha-lazy-bdd --compilers js:babel-core/register",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "https://github.com/MeoMix/jspm-loader-css.git"
},
"keywords": [
"jspm",
"css",
"css-modules",
"loader"
],
"author": "Sean Anderson",
"license": "ISC",
"bugs": {
"url": "https://github.com/MeoMix/jspm-loader-css/issues"
},
"homepage": "https://github.com/MeoMix/jspm-loader-css",
"registry": "npm",
"jspm": {
"browser": {
"cssnano": false
},
"ignore": [
"test/example",
"tmp"
]
},
"map": {
"./src/loader.js": {
"node": "./src/nodeLoader.js",
"browser": "./src/browserLoader.js"
}
}
}