-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.26 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.26 KB
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
57
58
59
60
61
62
63
64
{
"name": "@silvermine/fsaba",
"version": "1.0.0",
"description": "",
"main": "./dist/commonjs/index",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index",
"scripts": {
"commitlint": "commitlint --from d4ecfbb",
"prepare": "grunt build",
"test": "TS_NODE_PROJECT='tests/tsconfig.json' TS_NODE_FILES=true nyc mocha --opts ./.mocha.opts",
"check-node-version": "check-node-version --npm 11.6.2 --print",
"test:ci": "npm test -- --forbid-only",
"eslint": "eslint '{,!(node_modules|dist)/**/}*.{js,ts}'",
"markdownlint": "markdownlint-cli2",
"standards": "npm run commitlint && npm run markdownlint && npm run eslint",
"release:preview": "node ./node_modules/@silvermine/standardization/scripts/release.js preview",
"release:prep-changelog": "node ./node_modules/@silvermine/standardization/scripts/release.js prep-changelog",
"release:finalize": "node ./node_modules/@silvermine/standardization/scripts/release.js finalize"
},
"author": "Jeremy Thomerson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/silvermine/fsaba.git"
},
"bugs": {
"url": "https://github.com/silvermine/fsaba/issues"
},
"homepage": "https://github.com/silvermine/fsaba#readme",
"devDependencies": {
"@silvermine/chai-strictly-equal": "1.1.1",
"@silvermine/eslint-config": "3.2.1",
"@silvermine/standardization": "2.2.3",
"@silvermine/typescript-config": "1.0.0",
"@types/chai": "4.2.21",
"@types/mocha": "9.0.0",
"@types/node": "24.10.4",
"@types/sinon": "10.0.2",
"chai": "4.3.4",
"coveralls": "3.1.1",
"eslint": "8.57.0",
"grunt": "1.4.1",
"grunt-cli": "1.4.3",
"grunt-concurrent": "3.0.0",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-exec": "3.0.0",
"mocha": "5.2.0",
"nyc": "15.1.0",
"sinon": "11.1.2",
"source-map-support": "0.5.19",
"standard-version": "9.3.1",
"ts-loader": "9.2.5",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"webpack": "5.72.1",
"webpack-cli": "4.9.2"
},
"dependencies": {
"@silvermine/toolbox": "0.6.0",
"tslib": "2.3.0"
}
}