-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 1.84 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
{
"version": "6.0.0",
"name": "postcss-variables-loader",
"description": "Share variables between CSS and JS with Webpack + HMR",
"main": "lib/index.js",
"files": [
"lib/"
],
"keywords": [
"css2js",
"css4",
"cssnext",
"postcss",
"postcss-plugin",
"webpack",
"webpack-loader"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/coobaha/postcss-variables-loader"
},
"scripts": {
"build": "babel -d ./ ./src",
"coverage": "nyc --reporter=lcov --reporter=text --reporter=html npm test",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "eslint src test",
"test": "ava -T 7s test/index.js",
"validate": "npm run lint && npm test",
"prepare": "npm run build && npm run validate"
},
"author": {
"name": "Alexander Ryzhikov",
"email": "[email protected]",
"url": "https://github.com/coobaha"
},
"ava": {
"babel": true,
"require": [
"@babel/register"
]
},
"pre-commit": [
"validate"
],
"dependencies": {
"loader-utils": "^1.2.3",
"lodash": "^4.17.15",
"postcss": "^7.0.36",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"ava": "^5.2.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"coveralls": "^3.0.9",
"eslint": "^4.2.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"memory-fs": "^0.5.0",
"nyc": "^14.1.1",
"pre-commit": "^1.1.3",
"webpack": "^4.41.6",
"webpack-to-memory": "^1.0.0"
}
}