-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 943 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
37
{
"name": "duix",
"version": "3.1.0",
"author": {
"name": "Broda Noel",
"email": "[email protected]"
},
"description": "Just a simple state manager",
"keywords": [
"state",
"manager",
"x",
"kiss",
"callbacks"
],
"main": "build.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BrodaNoel/duix.git"
},
"devDependencies": {
"eslint": "^7.1.0",
"esm": "^3.2.25",
"jasmine": "^3.5.0",
"rollup": "^2.79.2",
"typescript": "^3.9.3"
},
"scripts": {
"build": "npm run rollup && npm run tsc",
"rollup": "rollup index.js --file build.js --format umd --name \"duix\"",
"tsc": "tsc --allowJS --checkJS --declaration --emitDeclarationOnly index.js",
"tsc-check": "tsc --allowJS --checkJS --noEmit index.js",
"test": "jasmine --require=esm --config=tests/jasmine.json",
"lint": "eslint && npm run tsc-check"
}
}