-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "splinter-saplingjs",
"private": false,
"version": "0.0.1",
"author": "Cargill Incorporated",
"license": "Apache-2.0",
"main": "dist/index.js",
"dependencies": {
"@babel/parser": "^7.8.3",
"@types/sjcl": "^1.0.29",
"babel-plugin-macros": "^2.8.0",
"js-yaml": "^3.13.1",
"sjcl": "^1.0.8"
},
"scripts": {
"test": "jest",
"build": "tsc -p ./tsconfig.json --strict --outDir dist",
"prepare": "npm run build",
"format": "prettier --write \"**/*.+(ts|*rc|json|js)\"",
"lint": "eslint src/*"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
}
}