-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.25 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "sassify-webpack-plugin",
"main": "./dist/SassifyWebpackPlugin.js",
"description": "A JavaScript/TypeScript object parser that generate scss maps/variables",
"version": "1.0.17",
"keywords": [
"sass",
"scss",
"javascript",
"js",
"typescript",
"ts",
"webpack",
"plugin"
],
"license": "MIT",
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"build": "node ./bin/build.js build",
"clean": "node ./bin/build.js clean",
"compile-src": "node ./bin/build.js compile-src",
"test": "tsc -p ./test/tsconfig.json && ava",
"doc": "typedoc --out docs/ src/",
"cover": "tsc --rootDir ./src --outDir ./src --sourcemap && nyc --reporter lcov --reporter text npm run test",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"author": "Jesse Linthorst <[email protected]> (http://jesselinthorst.nl)",
"bugs": {
"url": "https://github.com/jesse-mm/sassify-webpack-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jesse-mm/sassify-webpack-plugin"
},
"homepage": "https://github.com/jesse-mm/sassify-webpack-plugin",
"devDependencies": {
"@types/babel-core": "^6.7.14",
"@types/mkdirp": "^0.3.29",
"@types/mustache": "^0.8.29",
"@types/node": "^7.0.18",
"@types/pathjs": "^0.8.32",
"@types/pify": "^0.0.28",
"ava": "^0.19.1",
"babel-polyfill": "^6.23.0",
"babel-register": "^6.24.1",
"chalk": "^1.1.3",
"codecov.io": "^0.1.6",
"nyc": "^10.3.2",
"typedoc": "^0.7.1",
"webpack": "^2.5.1"
},
"babel": {
"presets": [
"es2015"
]
},
"ava": {
"files": [
"test/*.js",
"!test/mock/**/*"
],
"source": [
"src/*.js",
"!dist/*"
],
"babel": {
"presets": [
"es2015"
]
},
"require": [
"babel-register",
"babel-polyfill"
]
},
"dependencies": {
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"mkdirp": "^0.5.1",
"mustache": "^2.3.0",
"path": "^0.12.7",
"pify": "^2.3.0",
"shelljs": "^0.7.7",
"typescript": "^2.3.3",
"vm2": "^3.4.6"
}
}