-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 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
37
38
39
40
41
42
{
"name": "persiston",
"version": "0.1.0",
"description": "Simple persistent store with database-like API.",
"main": "index.js",
"types": "index.d.ts",
"files": [
"adapters",
"*.js",
"*.ts"
],
"scripts": {
"clean": "rimraf adapters *.js *.ts *.map",
"build": "npm run clean && tsc",
"test": "nyc mocha test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polar-bears/persiston.git"
},
"keywords": [],
"author": {
"name": "varHarrie",
"email": "[email protected]",
"url": "https://github.com/varHarrie"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/polar-bears/persiston/issues"
},
"homepage": "https://github.com/polar-bears/persiston#readme",
"devDependencies": {
"@polar-bears/tslint-config-standard": "^1.0.0",
"@types/node": "^12.0.7",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}