-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1013 Bytes
/
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
{
"name": "@skolplattformen/curriculum",
"version": "0.1.0",
"description": "Swedish curriculum codes to plain text",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": "[email protected]:kolplattformen/curriculum.git",
"author": "Johan Öbrink <[email protected]>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"lint": "eslint 'src/*.ts' --quiet --fix",
"test": "jest",
"build": "tsc",
"prepare": "yarn build",
"publish-package": "npm publish --access public"
},
"devDependencies": {
"@types/eslint": "^7.2.9",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"dependencies": {
"deepmerge": "^4.2.2"
}
}