-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 880 Bytes
/
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
{
"name": "@matejsvajger/reactive-object",
"version": "1.2.3",
"description": "Lightweight vanilla js reactive object",
"author": "Matej Svajger <hello@matejsvajger.com",
"main": "dist/reactive.cjs.js",
"module": "dist/reactive.esm.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint ./src",
"test": "jest --no-cache",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git@github.com:matejsvajger/reactive-object.git"
},
"keywords": [
"reactive",
"observable",
"object"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "7.8.3",
"@babel/preset-env": "7.8.3",
"babel-jest": "25.1.0",
"codecov": "3.7.1",
"eslint": "6.8.0",
"jest": "25.1.0",
"rimraf": "3.0.0",
"rollup": "1.30.1",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-terser": "5.2.0"
}
}