This repository was archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.42 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.42 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "grind-assets",
"version": "0.8.0-beta.14",
"description": "Asset management for Grind",
"author": "Shaun Harrison (@shnhrrsn)",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/grindjs/assets.git"
},
"keywords": [
"grindjs",
"grind-framework",
"asset-management",
"sass",
"scss",
"babel"
],
"dependencies": {
"@babel/code-frame": "^7.5.5",
"dateformat": "^3.0.3",
"ignore": "^5.1.2",
"optional": "^0.1.4",
"semver": "^6.3.0",
"strip-ansi": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.5.5",
"@babel/plugin-transform-classes": "^7.5.5",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/register": "^7.5.5",
"autoprefixer": "^9.6.1",
"ava": "^2.2.0",
"babel-eslint": "^10.0.2",
"babel-preset-grind": "^0.8.0-beta.4",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"clean-css": "^4.2.1",
"eslint": "^6.1.0",
"eslint-config-grind": "^2.3.0",
"eslint-plugin-import-auto-name": "^1.1.0",
"fetchit": "^2.1.0",
"grind-cli": "^0.8.0-beta.4",
"grind-framework": "^0.8.0-beta.4",
"grind-http": "^0.8.0-beta.5",
"node-sass": "^4.12.0",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-replace": "^2.2.0",
"svgo": "^1.3.0",
"uglify-es": "^3.3.9",
"uglify-js": "^3.6.0"
},
"peerDependencies": {
"grind-framework": "^0.8.0-beta.1"
},
"engines": {
"node": ">=10.13"
},
"scripts": {
"prepare": "bin/build",
"lint": "eslint src test",
"test": "bin/ava --verbose"
},
"ava": {
"files": [
"test/**/*.js",
"!test/fixtures/**/*.js",
"!test/helpers/**/*.js"
],
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
[
"grind",
{
"import-auto-name": {
"autoresolve": true
}
}
]
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"import-auto-name"
],
"env": {
"es6": true,
"node": true
},
"extends": "grind",
"parserOptions": {
"sourceType": "module"
}
}
}