-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
66 lines (66 loc) · 1.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
{
"name": "graphql-tag-pluck",
"version": "0.8.6",
"description": "Pluck graphql-tag template literals",
"license": "MIT",
"repository": "https://github.com/DAB0mB/graphql-tag-pluck.git",
"main": "build/graphql-tag-pluck.js",
"module": "src/index.js",
"typings": "index.d.ts",
"sideEffects": false,
"scripts": {
"build": "webpack --config webpack_config.js",
"test": "npm run build && jest --forceExit && yarn bundlesize",
"prepublish": "npm run build",
"bundlesize": "cd bundle-test && yarn && yarn test"
},
"dependencies": {
"@babel/parser": "^7.4.4",
"@babel/traverse": "^7.4.4",
"@babel/types": "^7.4.4",
"source-map-support": "^0.5.12"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"enzyme": "^3.9.0",
"eslint": "^6.0.0",
"eslint-loader": "^3.0.0",
"jest": "^24.7.1",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.js$",
"globals": {
"NODE_ENV": "test"
},
"setupFiles": [
"<rootDir>/jest.init.js"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
]
}
}