forked from mmussomele/quilt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 797 Bytes
/
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
{
"name": "@quilt/quilt",
"version": "0.4.0",
"main": "blueprint/bindings.js",
"files": [
"blueprint/bindings.js"
],
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-subset": "^1.5.0",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.3.0",
"mock-fs": "^4.4.1",
"nyc": "^10.3.2",
"rewire": "^2.5.2",
"sinon": "^2.1.0"
},
"scripts": {
"test": "mocha ./blueprint ./cli/command/init/"
},
"dependencies": {
"fs-extra": "^4.0.1",
"handlebars": "^4.0.10",
"inquirer": "^3.2.1",
"json-stable-stringify": "^1.0.1",
"mkdirp": "^0.5.1",
"sync-request": "^4.0.1",
"underscore": "^1.8.3"
},
"nyc": {
"exclude": "**/*_test.js"
}
}