-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "css-modules-loader-core",
"version": "1.1.0",
"description": "A loader-agnostic CSS Modules implementation, based on PostCSS",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"icss-replace-symbols": "1.1.0",
"postcss": "6.0.1",
"postcss-modules-extract-imports": "1.1.0",
"postcss-modules-local-by-default": "1.2.0",
"postcss-modules-scope": "1.1.0",
"postcss-modules-values": "1.3.0"
},
"devDependencies": {
"babel": "5.8.29",
"babel-eslint": "7.1.0",
"babelify": "7.3.0",
"chokidar-cli": "1.1.0",
"eslint": "3.10.1",
"mocha": "3.1.2"
},
"scripts": {
"lint": "eslint src",
"build": "babel --out-dir lib src",
"autotest": "chokidar src test -c 'npm test'",
"test": "mocha --compilers js:babel/register",
"prepublish": "rm -rf lib/* && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/css-modules/css-modules-loader-core.git"
},
"keywords": [
"css-modules",
"postcss",
"loader"
],
"files": [
"lib"
],
"author": "Glen Maddern",
"license": "ISC",
"bugs": {
"url": "https://github.com/css-modules/css-modules-loader-core/issues"
},
"homepage": "https://github.com/css-modules/css-modules-loader-core"
}