-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "scalarmap-es5",
"version": "2.0.2",
"description": "Scalar-key only ES6 Map polyfill (stirng + numbers), with same asymptotic performance.",
"main": "target-typescript/index",
"scripts": {
"compileTypescript": "mkdir -p ./target-typescript && tsc",
"test": "mocha --compilers ts:ts-node/register `((test -z $WATCH) && :) || echo '-w'` *.test.ts",
"clean": "rm -rf ./target ./target-typescript",
"prepublish": "npm run -s clean && npm run compileTypescript",
"compile": "npm run clean && npm run compileTypescript"
},
"typings": [
"target-typescript/index",
"target-typescript/stringmap",
"target-typescript/numbermap"
],
"files": [
"index.ts",
"stringmap.ts",
"numbermap.ts",
"target-typescript"
],
"author": "Tim Ruffles <[email protected]>",
"contributors": ["Reuben Thomas-Davis <[email protected]>"],
"license": "MIT",
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"chai": "^3.5.0",
"mocha": "^3.4.2",
"ts-node": "^3.1.0",
"typescript": "^2.4.1",
"typings": "^2.1.1"
}
}