This repository was archived by the owner on Aug 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.78 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.78 KB
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
{
"name": "intercept-client",
"version": "1.2.1",
"description": "Client library for interacting with the Intercept API.",
"repository": {
"type": "git",
"url": "git+https://github.com/RCPL/intercept-client.git"
},
"keywords": [
"drupal",
"orbitjs"
],
"author": "John Ferris <https://github.com/pixelwhip>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RCPL/intercept-client/issues"
},
"homepage": "https://github.com/RCPL/intercept-client#readme",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib dist es",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
"build:watch": "echo 'build && watch the COMMONJS version of the package - for other version, run specific tasks' && npm run build:commonjs:watch",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --copy-files ",
"build:commonjs:watch": "npm run build:commonjs -- --watch",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --copy-files ",
"build:es:watch": "npm run build:es -- --watch",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup src/index.js --config --sourcemap --output.file dist/intercept-client.js",
"build:umd:watch": "npm run build:umd -- --watch",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup src/index.js --config --output.file dist/intercept-client.min.js",
"generate:schema": "node ./scripts/generate-schema.js",
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
"jest": "cross-env NODE_ENV=commonjs ./node_modules/.bin/jest",
"jest:watch": "npm run jest -- --watch",
"prepare": "npm run clean && npm test && npm run build",
"test": "npm run lint && npm run jest"
},
"jest": {
"testRegex": "(/tests/.*\\.spec.js)$",
"automock": false,
"setupFiles": [
"./tests/setupJest.js"
]
},
"pre-commit": [
"test"
],
"devDependencies": {
"add": "^2.0.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-jest": "^22.1.0",
"babel-minify": "^0.2.0",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.3",
"dotenv": "^4.0.0",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"install": "^0.10.4",
"jest": "^22.1.4",
"jest-fetch-mock": "^1.4.2",
"npm": "^5.6.0",
"orbit-schema-from-openapi": "^1.1.1",
"pre-commit": "^1.2.2",
"redux-mock-store": "^1.5.1",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"uglify-es": "^3.3.7"
},
"dependencies": {
"bottleneck": "^2.0.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.5",
"redux": "^3.7.2",
"url": "^0.11.0",
"url-parse": "^1.2.0",
"uuid": "^3.2.1"
}
}