-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.5 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
50
51
52
53
54
55
56
{
"name": "@srfnstack/fntags",
"version": "0.5.1",
"author": "Robert Kempton <[email protected]>",
"private": false,
"homepage": "https://github.com/srfnstack/fntags",
"license": "MIT",
"files": [
"src/*",
"index.d.ts",
"index.d.ts.map",
"index.js",
"LICENSE.txt",
"README.md"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:srfnstack/fntags.git"
},
"keywords": [
"html",
"javascript",
"client-side",
"frontend",
"data",
"bind",
"binding",
"framework",
"state",
"two-way",
"state-management"
],
"devDependencies": {
"cypress": "13.6.1",
"pre-commit": "^1.2.2",
"standard": "^17.1.0",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"scripts": {
"test": "cp src/*.mjs docs/lib/ && npm run lint && cypress run --spec test/** --headless -b chrome",
"cypress": "cypress run --spec test/** -b chrome",
"lint": "standard --env browser src && standard --env browser --env jest --global Prism --global cy test docs",
"lint:fix": "standard --env browser --fix src && standard --env browser --env jest --global Prism --global cy --fix test docs",
"typedef": "rm -rf src/*.mts* && tsc",
"docs": "typedoc --plugin typedoc-plugin-markdown --out docs/types ./src/*.mjs",
"build": "npm run lint:fix && npm run typedef && npm run docs && npm run test"
},
"pre-commit": [
"lint",
"test"
],
"types": "index.d.ts"
}