-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.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
{
"name": "diapositive",
"version": "1.14.1",
"description": "Diapositive is a dependency-free Javascript slideshow helper library. It does only one thing but does it well: toggling a class between slides in a deck.",
"main": "dist/diapositive.js",
"repository": {
"type": "git",
"url": "https://github.com/jverneaut/Diapositive.git"
},
"scripts": {
"start": "rollup -wc",
"build": "rollup -c",
"postversion": "git push && git push --tags && npm publish",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Julien Verneaut <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-object-assign": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^24.8.0",
"rollup": "^1.28.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-dts": "^1.4.7",
"typescript": "^3.9.6"
}
}