aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: d7268b4d622a04dba943b1db1f2cf594a8a40cc8 (plain)
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
{
  "name": "nitt",
  "version": "1.0.2",
  "author": "Marin Ivanov <[email protected]>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/metala/nitt.git"
  },
  "keywords": [
    "nitt",
    "event-listener",
    "event-emitter",
    "eventemitter"
  ],
  "scripts": {
    "build": "microbundle",
    "dev": "microbundle watch",
    "test": "jest"
  },
  "source": "src/index.ts",
  "main": "dist/nitt.js",
  "module": "dist/nitt.esm.js",
  "unpkg": "dist/nitt.umd.js",
  "devDependencies": {
    "@types/jest": "^24.0.11",
    "@types/node": "^11.13.7",
    "documentation": "^10.1.0",
    "jest": "^24.7.1",
    "microbundle": "^0.11.0",
    "ts-jest": "^24.0.2",
    "typescript": "^3.4.5"
  }
}