-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "@redturtle/grunt-blocks",
"version": "2.0.0",
"description": "Grunt configuration helper",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --emitDeclarationOnly && babel src --out-dir lib --extensions \".ts,.tsx\"",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedTurtle/grunt-blocks.git"
},
"keywords": [
"grunt",
"javascript",
"configuration",
"blocks"
],
"author": "Piero Nicolli <piero.nicolli@redturtle.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RedTurtle/grunt-blocks/issues"
},
"homepage": "https://github.com/RedTurtle/grunt-blocks#readme",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-typescript": "^7.3.3",
"@types/autoprefixer": "^9.5.0",
"typescript": "^2.9.1"
},
"dependencies": {
"autoprefixer": "^9.6.1",
"cssnano": "^4.1.10",
"postcss-flexbugs-fixes": "^4.1.0"
}
}