This repository has been archived by the owner on Aug 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 3.05 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
92
93
94
95
{
"name": "boojum",
"version": "0.0.2",
"description": "An easy way to build Shopify Themes",
"main": "index.js",
"bin": {
"boojum": "lib/cli/entry.js"
},
"scripts": {
"start": "cross-env NODE_ENV=development babel-node app.js",
"test": "mocha --compilers js:babel-core/register --reporter=dot --timeout=1350 test/\\*\\*/\\*.js",
"test:coverage": "NODE_ENV=nyc nyc --reporter=text-summary --reporter=lcov npm run test",
"test:eslint": "cross-env NODE_ENV=test eslint --ignore-path .gitignore --ignore-pattern tests --ignore-pattern node_modules --ignore-pattern lib/cli",
"eslint:fix": "cross-env NODE_ENV=test eslint --ignore-path .gitignore --ignore-pattern tests --ignore-pattern node_modules --ignore-pattern lib/cli --fix",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"nyc": {
"root": "./lib",
"reporter": ["text", "text-summary", "lcov", "html"],
"include": ["lib/**/*.js"],
"require": ["babel-core/register"],
"sourceMap": false,
"instrument": false,
"all": true,
"check-coverage": true,
"per-file": true,
"lines": 70,
"statements": 70,
"functions": 70,
"branches": 70
},
"repository": {
"type": "git",
"url": "git+https://github.com/byjord/boojum.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/byjord/boojum/issues"
},
"homepage": "https://github.com/byjord/boojum#readme",
"dependencies": {
"Faker": "^0.7.2",
"abbrev": "^1.1.0",
"bluebird": "^3.5.0",
"chalk": "^2.1.0",
"hexo-fs": "^0.2.1",
"hexo-log": "^0.2.0",
"liquid-node": "^3.0.0",
"lodash": "^4.17.4",
"lowdb": "^0.17.1",
"mz": "^2.6.0",
"nsfw": "^1.0.16",
"schema-object": "^4.0.11",
"snyk": "^1.38.1",
"speakingurl": "^14.0.1",
"swig": "^1.4.2",
"swig-extras": "0.0.1",
"update-notifier": "^2.2.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-plugin-dynamic-import-node": "1.0.2",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-react-intl": "2.3.1",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.8",
"babel-preset-env": "^1.6.0",
"babel-preset-latest": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.24.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.0.5",
"eslint": "^4.5.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-shopify": "^17.0.0",
"eslint-plugin-sort-class-members": "^1.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"nyc": "^11.1.0"
},
"snyk": true
}