This repository has been archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@typed/hashmap",
"version": "1.0.1",
"description": "Immutable Hash Map in TypeScript",
"main": "dist/typed-hashmap.js",
"jsnext:main": "lib.es2015/index.js",
"module": "lib.es2015/index.js",
"typings": "lib.es2015/index.d.ts",
"scripts": {
"test:lint": "northbrook tslint",
"test:unit": "northbrook mocha",
"test": "npm run test:lint && npm run test:unit",
"commit": "northbrook commit",
"build": "northbrook tsc && rimraf lib dist && rollup -c && npm run uglify",
"uglify": "uglifyjs dist/typed-hashmap.js -o dist/typed-hashmap.min.js",
"preversion": "npm run build",
"postversion": "git add dist/ && git commit -m 'chore(dist): build dist'",
"release": "northbrook release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TylorS/typed-hashmap.git"
},
"keywords": [
"typescript",
"hashmap",
"hamt",
"hamtmap",
"immutable",
"mori"
],
"author": "Tylor Steinberger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TylorS/typed-hashmap/issues"
},
"homepage": "https://github.com/TylorS/typed-hashmap#readme",
"devDependencies": {
"@briancavalier/assert": "^3.0.0",
"@motorcycle/tslint": "^1.3.0",
"@northbrook/mocha": "^3.1.0",
"@northbrook/tsc": "^1.0.7",
"@northbrook/tslint": "^2.1.7",
"@types/lodash-es": "^4.14.2",
"@types/mocha": "^2.2.38",
"@types/node": "^7.0.0",
"mocha": "^3.2.0",
"northbrook": "^4.5.3",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-typescript": "^0.8.1",
"tslint": "^4.3.1",
"typescript": "^2.1.5",
"uglify-js": "^2.7.5"
},
"dependencies": {
"@typed/curry": "^1.0.1",
"lodash-es": "^4.17.4"
}
}