-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 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
{
"name": "@fmtk/value-collection",
"version": "0.1.2",
"main": "lib/bundle.js",
"module": "lib/bundle.esm.js",
"types": "lib/index.d.ts",
"author": "Gordon Leigh <gordon.leigh@futurematik.co.uk>",
"repository": "https://github.com/futurematik/value-collection",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf lib/",
"compile": "rollup -c",
"build": "yarn clean && yarn compile && yarn lint",
"lint": "eslint src/ --ext=ts,tsx",
"postversion": "git push --follow-tags",
"prepare": "yarn build",
"preversion": "yarn build"
},
"devDependencies": {
"@fmtk/rollup-plugin-ts": "^0.3.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^1.31.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"dependencies": {}
}