-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "@movigo/core",
"version": "0.6.1",
"description": "Movigo library core with base features to animate your DOM elements.",
"author": {
"name": "Omar Desogus",
"email": "me@cedoor.dev",
"url": "https://cedoor.dev"
},
"license": "MIT",
"main": "dist/movigo.js",
"unpkg": "dist/movigo.min.js",
"jsdelivr": "dist/movigo.min.js",
"module": "src/index.js",
"scripts": {
"start": "npm test && bash bin/less-watcher.sh & live-server",
"pretest": "rollup -c",
"test": "tape 'test/**/*.js' | tap-spec",
"prepublishOnly": "rm -rf dist && npm run test"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/movigo/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/movigo/core.git"
},
"keywords": [
"js-animations",
"animations",
"animations-library"
],
"bugs": {
"url": "https://github.com/movigo/core/issues"
},
"devDependencies": {
"jsdom": "16.2.2",
"less": "^3.11.1",
"live-server": "1.2.1",
"rollup": "2.3.4",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.3.0",
"standard": "14.3.3",
"tap-spec": "5.0.0",
"tape": "4.13.2"
}
}