Skip to content

Commit 9092322

Browse files
committed
config and more file set up
1 parent 3f403c7 commit 9092322

File tree

6 files changed

+43
-0
lines changed

6 files changed

+43
-0
lines changed

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "oprf",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"directories": {
7+
"test": "test"
8+
},
9+
"scripts": {
10+
"test": "echo \"Error: no test specified\" && exit 1"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/multiparty/oprf.git"
15+
},
16+
"author": "Lucy Qin <[email protected]>",
17+
"license": "ISC",
18+
"bugs": {
19+
"url": "https://github.com/multiparty/oprf/issues"
20+
},
21+
"homepage": "https://github.com/multiparty/oprf#readme"
22+
}

src/index.ts

Whitespace-only changes.

src/oprf.ts

Whitespace-only changes.

test/test.ts

Whitespace-only changes.

tsconfig.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"target": "es5",
5+
"declaration": true,
6+
"outDir": "./dist",
7+
"lib": [ "es2015" ]
8+
},
9+
"include": [
10+
"src/**/*"
11+
]
12+
}
13+

typings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"globalDependencies": {
3+
"mocha": "registry:dt/mocha#2.2.5+20170311011848"
4+
},
5+
"dependencies": {
6+
"chai": "registry:npm/chai#3.5.0+20160723033700"
7+
}
8+
}

0 commit comments

Comments
 (0)