-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "fulcrum-app",
"version": "2.7.0",
"description": "JavaScript wrapper for the Fulcrum API",
"main": "dist/index.js",
"scripts": {
"test": "mocha --require babel-core/register",
"lint": "node_modules/.bin/eslint src/* src/**/*",
"build": "node_modules/.bin/babel src --out-dir dist --source-maps",
"watch": "node_modules/.bin/babel src --out-dir dist --source-maps --watch",
"clean": "rm -rf dist"
},
"author": "Jason Sanford (jasonsanford@gmail.com)",
"license": "BSD-2-Clause",
"eslintConfig": {
"extends": "fulcrum",
"globals": {
"fetch": true
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^8.49.0",
"eslint-config-fulcrum": "^1.5.4",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.5.1",
"mocha": "^10.2.0",
"nock": "^9.1.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"base-64": "^0.1.0",
"form-data": "^2.3.1",
"isomorphic-fetch": "^3.0.0",
"mixmatch": "0.0.2",
"p-queue": "^4.0.0",
"uuid": "^3.1.0"
}
}