-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.19 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
{
"name": "fiber-loop",
"version": "0.0.1-alpha.3",
"main": "./bin/index.js",
"typings": "./bin/index.d.ts",
"type": "module",
"author": {
"name": "your name",
"email": "[email protected]"
},
"license": "WTFPL",
"repository": "https://github.com/your/package/address",
"keywords": [],
"description": "a npm package",
"files": [
"LICENSE.md",
"README.md",
"bin/"
],
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts"
}
},
"scripts": {
"build": "npm run build:tsc",
"build:tsc": "rm -rf bin && tsc && tsc-alias",
"test": "mocha --require babel-register --require babel-polyfill test/**/*.spec.js",
"watch": "npm-watch build"
},
"devDependencies": {
"@types/node": "^20.8.7",
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"mocha-sinon": "^2.1.2",
"npm-watch": "^0.11.0",
"sinon": "^17.0.0",
"tsc-alias": "^1.8.8",
"typescript": "^5.2.2",
"typescript-transform-paths": "^3.4.6"
}
}