forked from ryangjchandler/spruce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 909 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
{
"name": "@ryangjchandler/spruce",
"description": "A lightweight state management layer for Alpine.js",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "[email protected]/ryangjchandler/spruce"
},
"author": "Ryan Chandler <[email protected]>",
"license": "MIT",
"source": "src/index.js",
"main": "dist/spruce.js",
"umd:main": "dist/spruce.umd.js",
"module": "dist/foo.module.js",
"scripts": {
"build": "microbundle",
"watch": "microbundle watch",
"test": "npx jest"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"@testing-library/dom": "^7.2.2",
"@testing-library/jest-dom": "^5.5.0",
"alpinejs": "^2.3.1",
"jest": "^25.4.0",
"jsdom-simulant": "^1.1.2",
"microbundle": "^0.11.0",
"observable-membrane": "^0.26.1"
}
}