-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.94 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
{
"name": "storage-proxy",
"version": "1.1.2",
"description": "Use web storage (localStorage/sessionStorage) just like plain objects using ES6 Proxies.",
"author": "Ian K Smith <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smithki/storage-proxy"
},
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"typings": "dist/index.cjs.d.ts",
"unpkg": "dist/index.umd.js",
"scripts": {
"dev": "npm-run-all -s clean:dist -p compile_watch:*",
"build": "npm-run-all -s clean:dist -p compile:*",
"compile:cjs": "microbundle build src/index.cjs.ts --format cjs --target web --external none",
"compile:umd": "microbundle build src/index.umd.ts --format umd --name StorageProxy --target web --external none",
"compile_watch:cjs": "microbundle watch src/index.cjs.ts --format cjs --target web --external none",
"compile_watch:umd": "microbundle watch src/index.umd.ts --format umd --name StorageProxy --target web --external none",
"clean": "npm-run-all -s clean:*",
"clean:dist": "rimraf dist",
"clean:test-dist": "rimraf test/dist",
"clean:cache": "rimraf .rts2_cache_*",
"test_watch": "npm-run-all -s test:compile -p test_watch:*",
"test_watch:compile": "tsc -w -p ./test",
"test_watch:run": "chokidar \"./test/dist/**/*.spec.js\" -c \"npm run test:run\" --initial \"npm run test:run\"",
"test": "npm-run-all -s clean:test-dist test:*",
"test:compile": "tsc -p ./test",
"test:run": "alsatian ./test/dist/**/*.spec.js",
"lint": "tslint --fix -p ."
},
"devDependencies": {
"@ikscodes/tslint-config": "^5.3.1",
"alsatian": "^2.4.0",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"microbundle": "^0.8.4",
"mock-browser": "^0.92.14",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.0",
"rimraf": "^2.6.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"dependencies": {
"on-change": "^1.6.2"
}
}