-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.45 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
{
"name": "tipu",
"version": "0.2.1",
"description": "Simple logging API for modern browsers.",
"browser": "lib/tipu.js",
"main": "lib/tipu.js",
"module": "lib/tipu.js",
"types": "lib/types/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c build/rollup.config.js --environment INCLUDE_DEPS,BUILD:development",
"build:release": "rollup -c build/rollup.config.js --environment INCLUDE_DEPS,BUILD:production",
"prepare": "npm run build",
"prepublishOnly": "npm run build:release",
"start": "npm run dev",
"test": "export TS_NODE_COMPILER_OPTIONS='{ \"module\": \"commonjs\" }' && mocha -r ts-node/register test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:Omnijar/Studio/tipu.git"
},
"keywords": [
"logging",
"typescript",
"api",
"browser"
],
"author": "フィリップ ([email protected])",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-typescript": "4.1.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"rollup": "^2.7.1",
"ts-loader": "^7.0.1",
"ts-node": "^8.9.0",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
}
}