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
| {
| "name": "icss-utils",
| "version": "4.1.1",
| "description": "ICSS utils for postcss ast",
| "main": "lib/index.js",
| "engines": {
| "node": ">= 6"
| },
| "files": [
| "lib"
| ],
| "scripts": {
| "lint": "eslint . --ignore-path .gitignore",
| "build": "babel --out-dir lib src",
| "pretest": "npm run lint",
| "test": "npm run test:only",
| "test:only": "jest",
| "prepublish": "yarn test && yarn run build"
| },
| "babel": {
| "presets": [
| [
| "@babel/preset-env",
| {
| "targets": {
| "node": 6
| }
| }
| ]
| ]
| },
| "eslintConfig": {
| "parser": "babel-eslint",
| "parserOptions": {
| "sourceType": "module"
| },
| "env": {
| "es6": true,
| "jest": true
| },
| "extends": "eslint:recommended"
| },
| "lint-staged": {
| "*.js": [
| "prettier --write",
| "eslint",
| "git add"
| ]
| },
| "husky": {
| "hooks": {
| "pre-commit": "lint-staged"
| }
| },
| "repository": {
| "type": "git",
| "url": "git+https://github.com/css-modules/icss-utils.git"
| },
| "keywords": [
| "css",
| "modules",
| "icss",
| "postcss"
| ],
| "author": "Glen Maddern",
| "license": "ISC",
| "bugs": {
| "url": "https://github.com/css-modules/icss-utils/issues"
| },
| "homepage": "https://github.com/css-modules/icss-utils#readme",
| "dependencies": {
| "postcss": "^7.0.14"
| },
| "devDependencies": {
| "@babel/cli": "^7.1.0",
| "@babel/core": "^7.1.0",
| "@babel/preset-env": "^7.1.0",
| "babel-eslint": "^10.0.1",
| "babel-jest": "^24.1.0",
| "eslint": "^5.14.1",
| "husky": "^1.3.1",
| "jest": "^24.1.0",
| "lint-staged": "^8.1.4",
| "prettier": "^1.16.4"
| }
| }
|
|