-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
{
"name": "local-motive",
"version": "1.2.3",
"description": "A small but powerful TypeScript/ES5 library that simplifies the use of HTML5 Web Storage APIs in your models",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run test && npm run build",
"build": "rm -rf dist && tsc",
"lint": "tslint -p tslint.json lib/**/*.ts",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"localStorage",
"local storage",
"sessionStorage",
"session storage",
"web storage",
"angular",
"angular 2",
"ng",
"ng2"
],
"author": {
"name": "Andrew Meyer",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/menehune23/local-motive"
},
"bugs": {
"url": "https://github.com/menehune23/local-motive/issues"
},
"license": "MIT",
"jest": {
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.spec.ts",
"moduleFileExtensions": [
"ts",
"js"
]
},
"devDependencies": {
"@types/jest": "^19.2.3",
"jest": "^20.0.3",
"ts-jest": "^20.0.10",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
},
"dependencies": {
"reflect-metadata": "^0.1.10"
}
}