This repository was archived by the owner on Jul 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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
{
"name": "slendr",
"version": "1.4.1",
"description": "A responsive & lightweight slider for modern browsers.",
"repository": "joseluisq/slendr",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"/dist/*.js",
"/dist/*.d.ts",
"/dist/*.css",
"/dist/*.scss",
"/dist/*.map",
"README.md",
"LICENSE.md"
],
"author": {
"name": "Jose Luis Quintana",
"url": "http://git.io/joseluisq"
},
"keywords": [
"slider",
"slideshow",
"html5",
"lightweight",
"reponsive",
"css3",
"translate3d",
"umd",
"es6",
"commonjs",
"hardware accelerated",
"typescript"
],
"dependencies": {
"emitus": "^2.3.2",
"imgz": "^0.0.2"
},
"devDependencies": {
"@types/jasmine": "^3.3.10",
"@types/node": "^11.11.3",
"clean-css-cli": "^4.1.10",
"git-testing-hook": "^0.3.0",
"jasmine-core": "^3.2.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.3.0",
"karma-spec-reporter": "^0.0.32",
"karma-typescript": "^4.0.0",
"node-sass": "^4.9.3",
"parcel-bundler": "^1.12.2",
"rollup": "^1.6.0",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.20.1",
"tslint": "^5.11.0",
"tslint-config-standard-plus": "^2.1.4",
"typescript": "^3.3.3333"
},
"scripts": {
"start": "parcel app/index.html",
"version": "npm run build",
"build": "env NODE_ENV=production PKG_NAME=$npm_package_name ./task build",
"test": "env NODE_ENV=testing ./task test"
}
}