-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.82 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": "@avcs/epicstore",
"version": "1.0.0-beta",
"description": "A JavaScript framework",
"main": "lib/EpicStore.js",
"repository": "git@github.com:avcs06/EpicStore.git",
"scripts": {
"clean": "rimraf lib dist es",
"build": "npm run clean && rollup -c",
"prepublish": "npm run build",
"test": "jasmine",
"cover": "nyc jasmine",
"debug": "node --inspect-brk node_modules/.bin/jasmine"
},
"keywords": [],
"author": "AvcS",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.10",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@types/jasmine": "^3.6.2",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-istanbul": "^6.0.0",
"cross-env": "^5.2.1",
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"istanbul": "^1.0.0-alpha",
"jasmine": "^3.6.3",
"jasmine-es6": "^0.4.3",
"nyc": "^15.1.0",
"rimraf": "^2.7.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-watch": "^4.3.1",
"source-map-support": "^0.5.19",
"typescript": "^4.1.3"
},
"dependencies": {
"invariant": "^2.2.4",
"memoizee": "^0.4.14"
}
}