-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
128 lines (128 loc) · 2.99 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@helpscout/helix",
"private": false,
"version": "0.2.0",
"description": "A Faker-powered fixture generator for Javascript",
"main": "lib/index.js",
"scripts": {
"build:js": "cross-env babel src --out-dir lib --ignore tests,**/*.test.js",
"build": "npm run clean && npm run pretty && npm run build:js",
"clean": "rimraf coverage lib es dist",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"dev": "npm run test:dev",
"standard": "standard 'src/**/*.js'",
"pretty": "npm run standard -- --fix",
"release:beta": "np --yolo --any-branch",
"release:patch": "np patch --no-yarn",
"release:minor": "np minor --no-yarn",
"release:major": "np major --no-yarn",
"release": "npm run release:patch",
"start": "npm run dev",
"test": "npm run test:coverage",
"test:coverage": "npm run test:dev -- --coverage",
"test:dev": "node scripts/test.js --env=jsdom",
"version": "npm run build"
},
"author": "ItsJonQ <[email protected]> (http://jonquach.com)",
"contributors": [
"Pierre-Luc Babin <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/helpscout/helix.git"
},
"bugs": {
"url": "https://github.com/helpscout/helix/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"faker",
"spec",
"compose",
"fixtures",
"helix",
"mock",
"data"
],
"license": "MIT",
"dependencies": {
"faker": "5.5.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.1",
"@babel/preset-env": "7.11.0",
"babel-jest": "26.6.3",
"babel-plugin-add-module-exports": "1.0.4",
"braces": "3.0.2",
"coveralls": "3.1.0",
"cross-env": "7.0.3",
"cryptiles": "^4.1.3",
"hoek": "6.1.3",
"jest": "26.6.3",
"jest-cli": "26.6.3",
"np": "7.5.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"standard": "16.0.3"
},
"nyc": {
"exclude": [
"config/**/*.js",
"dist/**/*.js",
"es/**/*.js",
"lib/**/*.js",
"scripts/**/*.js",
"src/**/*.fixture.js"
],
"cache": false
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js?(x)",
"<rootDir>/src/**/?(*.)(spec|test).js?(x)"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx"
]
},
"standard": {
"ignore": [
"es",
"dist",
"lib"
],
"globals": [
"Event",
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"jasmine",
"jest",
"test"
]
}
}