-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "corset",
"version": "2.5.0",
"description": "Declarative DOM binding, without the complexity of JSX/templates.",
"type": "module",
"main": "./lib/main.js",
"exports": {
"default": "./lib/main.js"
},
"source": "src/main.js",
"types": "lib/main.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "microbundle -f modern --tsconfig jsconfig.json",
"changeset": "changeset",
"server": "python3 -m http.server 7800",
"test-qunit": "node node_modules/@matthewp/node-qunit-puppeteer/cli.js http://localhost:7800/test/test.html",
"test": "npm run server & npm run test-qunit",
"typecheck": "tsc -p jsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewp/corset.git"
},
"keywords": [],
"author": "Matthew Phillips <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/matthewp/corset/issues"
},
"homepage": "https://github.com/matthewp/corset#readme",
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@matthewp/node-qunit-puppeteer": "^3.0.0",
"microbundle": "^0.14.2"
}
}