-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.46 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
{
"name": "gassetic",
"version": "1.0.10",
"description": "Symfony2 Assetic replacement based on the gulp build tool",
"main": "./dist/index.js",
"bin": {
"gassetic": "./bin/index.js"
},
"scripts": {
"lint": "eslint ./src ./bin.js",
"test": "jest",
"dev": "jest --watch",
"compile": "rm -rf dist && mkdir dist && babel src/index.js src/config/index.js --out-dir dist",
"prepublish": "npm run compile"
},
"files": [
"dist",
"bin",
"yarn.lock"
],
"repository": {
"type": "git",
"url": "https://github.com/romanschejbal/gassetic"
},
"keywords": [
"gulp",
"assetic",
"symfony2"
],
"author": "Roman Schejbal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/romanschejbal/gassetic/issues"
},
"homepage": "https://github.com/romanschejbal/gassetic",
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-jest": "^17.0.0",
"eslint": "^3.10.0",
"jest": "^18.1.0"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.20.0",
"del": "^2.2.2",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-filter": "^5.0.0",
"gulp-plumber": "^1.1.0",
"gulp-tap": "^0.1.3",
"gulp-util": "^3.0.8",
"js-yaml": "^3.7.0",
"yargs": "^6.6.0"
},
"optionalDependencies": {
"fsevents": "*"
}
}