This repository was archived by the owner on Jul 20, 2021. 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
70 lines (70 loc) · 2.35 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.35 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
{
"name": "@exploratoryengineering/data-mapper-chain",
"version": "0.7.1",
"description": "Simple data mapper library meant to be run in browser to ease data transformation for IoT devices in JS",
"main": "dist/data-mapper-chain.umd.js",
"module": "dist/data-mapper-chain.es5.js",
"typings": "dist/types/main.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ExploratoryEngineering/data-mapper-chain.git"
},
"scripts": {
"prebuild": "npm t && del-cli dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --includes tutorials --theme minimal --mode file src --exclude \"**/*.spec.ts\" --readme DOC.md",
"prepublish": "npm run build",
"publish-docs": "ts-node tools/publishToGhPages",
"release": "standard-version --silent",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"test": "npm run test:unit && npm run test:tslint",
"test:unit": "del-cli test/coverage-jest && jest --forceExit",
"test:unit:watch": "jest --config jest.config.json --watch",
"test:tslint": "tslint \"src/**/*.ts\" -c tslint.json"
},
"keywords": [
"iot",
"data",
"transform"
],
"author": "Per Kristian Kummermo",
"license": "Apache-2.0",
"devDependencies": {
"@telenorfrontend/tslint-config-telenor": "^0.1.1",
"@types/jest": "^24.0.19",
"@types/node": "^12.11.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"del-cli": "^3.0.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-junit-reporter": "^1.1.0",
"rollup": "^1.25.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.3",
"standard-version": "^8.0.1",
"ts-jest": "^24.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.4",
"validate-commit-msg": "^2.14.0"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg"
}
},
"dependencies": {
"@types/base64-js": "1.2.5",
"base64-js": "1.3.0"
}
}