-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
61 lines (61 loc) · 1.47 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
{
"name": "nuxt-env",
"version": "0.1.0",
"description": "Inject env vars for your Nuxt app at runtime",
"main": "index.js",
"repository": "https://github.com/samtgarson/nuxt-env",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"dev": "nuxt -c ./test/support/app/nuxt.config.js",
"test": "npm run test:unit && npm run test:lint",
"test:unit": "NODE_ENV=test jest --coverage",
"test:lint": "eslint --ignore-path .gitignore --ignore-pattern '/doc/**' ."
},
"babel": {
"env": {
"test": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
}
}
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^21.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"docdash": "^0.4.0",
"eslint": "^4.6.1",
"eslint-config-samtgarson": "^0.0.8",
"jest": "^21.0.1",
"jsdoc": "^3.5.5",
"jsdom": "^13.2.0",
"nuxt": "^1.0.0-rc11",
"request-promise-native": "^1.0.5",
"retell": "^1.1.1"
},
"jest": {
"setupFiles": [
"<rootDir>/test/support/setup.js"
],
"testMatch": [
"**/test/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test/support/"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleNameMapper": {
"^@/(.+)": "<rootDir>/$1"
},
"testEnvironment": "node"
}
}