-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
75 lines (75 loc) · 2.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "san-store",
"version": "2.2.7",
"description": "Application State Management for San",
"scripts": {
"build": "rm -rf dist && rollup --config && uglifyjs dist/san-store.source.js -mco dist/san-store.js && uglifyjs dist/san-store-use.source.js -mco dist/san-store-use.js && cp types/*.d.ts dist",
"pretest": "npm run build && webpack --config test/webpack.config.js",
"test-server": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build && webpack-dev-server --config test/webpack.config.js",
"test": "npm run build && karma start test/karma.config.js",
"lint": "eslint --ignore-path .eslintignore ./"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/preset-env": "^7.7.7",
"@ecomfe/eslint-config": "^7.3.0",
"@rollup/plugin-replace": "^3.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.18.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"karma": "^1.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"karma-sourcemap-loader": "^0.3.0",
"karma-webpack": "^2.0.1",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"san": "^3.11.0",
"san-composition": "^1.3.0",
"san-update": "2.0.0",
"uglify-js": "^2.7.5",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"types": "index.d.ts",
"typesVersions": {
">=4.2": {
"*": [
"dist/*"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/san-store.source.js"
},
"./use": {
"types": "./dist/use.d.ts",
"default": "./dist/san-store-use.source.js"
}
},
"main": "dist/san-store.source.js",
"unpkg": "dist/san-store",
"sideEffects": ["test/*.js"],
"files": [
"src",
"dist"
],
"peerDependencies": {
"san-composition": "^1.3.0",
"san-update": "2.x"
},
"browserslist": [
"IE 8"
],
"repository": {
"type": "git",
"url": "https://github.com/baidu/san-store.git"
},
"license": "MIT"
}