-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.79 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "btgrid",
"version": "0.3.0",
"description": "Bootstrap GRID resize and drag drop",
"main": "dist/index.js",
"jsnext:main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"srctype": "ts",
"sideEffects": false,
"scripts": {
"test": "npm run lint && karma start karma.conf.js",
"rename": "node rename.js",
"clean": "rimraf ./dist",
"release": "cross-env watch=false npm test && npm run build && cross-var git commit -am $npm_package_version && cross-var git tag $npm_package_version && git push && git push --tags",
"lint": "eslint -c .eslintrc.ts.js \"src/**/*.ts\"",
"lint:fix": "eslint --fix -c .eslintrc.ts.js \"src/**/*.ts\" --fix",
"build:self": "rollup -c config/rollup.config.js",
"build:esm": "rollup -c config/rollup.config.esm.js",
"build:umd": "rollup -c config/rollup.config.umd.js",
"build:umd.min": "cross-env NODE_ENV=production npm run build:umd",
"build": "npm run clean && npm run build:self && npm run build:esm && npm run build:umd && npm run build:umd.min",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"scripts:js": {
"rename": "node rename.js",
"clean": "rimraf ./dist",
"lint": "eslint -c .eslintrc.js \"src/**/*.js\"",
"lint:fix": "eslint --fix -c .eslintrc.js \"src/**/*.js\" --fix",
"build:self": "rollup -c config/rollup.config.js",
"build:esm": "rollup -c config/rollup.config.esm.js",
"build:umd": "rollup -c config/rollup.config.umd.js",
"build:umd.min": "cross-env NODE_ENV=production npm run build:umd",
"build": "npm run clean && npm run build:self && npm run build:esm && npm run build:umd && npm run build:umd.min",
"mocha": "mocha --require @babel/register ./test/**/*.js",
"test": "npm run lint && cross-env NODE_ENV=test nyc --nycrc-path .nycrc-js mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"release": "npm test && npm run build && cross-var git commit -am $npm_package_version && cross-var git tag $npm_package_version && git push && git push --tags"
},
"author": "ASheng",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/sonce/BTGrid.git"
},
"bugs": {
"url": "https://github.com/sonce/BTGrid/issues"
},
"files": [
"/dist",
"*.d.ts"
],
"engines": {
"node": ">= 0.12.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"@babel/runtime": "^7.8.7",
"@js-lib/cli": "^1.6.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-plugin-istanbul": "^6.0.0",
"cdkit": "^1.3.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.2",
"cross-var": "^1.1.0",
"es5-shim": "^4.5.13",
"eslint": "^6.8.0",
"jsdom": "16.2.1",
"jsdom-global": "3.0.2",
"karma": "^5.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-coveralls": "^2.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^5.0.2",
"mem": "^6.0.1",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.6.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-uglify": "^6.0.4",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"bootstrap": "^4.4.1"
}
}