-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "san-composition",
"version": "1.3.0",
"main": "dist/index.common.js",
"browser": "dist/index.common.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"types": "types",
"description": "San Composition API",
"scripts": {
"dev": "web-dev-server --open example/ --node-resolve --watch",
"build": "npm run clear && npm run rollup",
"rollup": "rollup -c",
"clear": "rimraf ./dist",
"pretest": "npm run build",
"test": "npm run test:unit",
"test:unit": "npx karma start ./test/karma.conf.js --single-run",
"test:cov": "npm run test -- -- --coverage",
"test:types": "tsc -p ./types/test/tsconfig.json",
"lint": "eslint --ignore-path .eslintignore ./"
},
"keywords": [
"San",
"San Composition API"
],
"files": [
"index.js",
"dist",
"types/*.d.ts",
"types/*.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/baidu/san-composition.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@ecomfe/eslint-config": "^7.3.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^3.0.0",
"@web/dev-server": "^0.1.22",
"eslint": "^7.18.0",
"jasmine-core": "^2.99.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-remap-istanbul": "^0.6.0",
"karma-sourcemap-loader": "^0.3.7",
"rimraf": "^3.0.2",
"rollup": "^2.33.1",
"rollup-plugin-terser": "^7.0.2",
"san": "^3.11.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"san": "^3.10.0"
}
}