-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "sassport",
"version": "0.8.0",
"description": "JavaScript modules for Sass.",
"main": "dist/index.js",
"scripts": {
"start": "babel -w ./src -d ./dist",
"build": "babel ./src -d ./dist",
"test": "npm run build && mocha --require babel-core/register",
"test:watch": "mocha -w --require babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkpiano/sassport.git"
},
"author": "David Khourshid <davidkpiano@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidkpiano/sassport/issues"
},
"homepage": "https://github.com/davidkpiano/sassport#readme",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.4.1",
"gonzales-pe": "^3.0.0-31",
"image-size": "^0.3.5",
"mocha": "^2.2.5",
"node-sass": "^3.3.3",
"node-sass-utils": "^1.1.2",
"rimraf": "^2.4.2",
"sassdash": "^0.8.1",
"should": "^7.0.1"
},
"dependencies": {
"gonzales-pe": "^3.2.1",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"node-sass": "^3.4.2",
"node-sass-utils": "^1.1.2"
}
}