forked from taoqf/nools-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
57
{
"name": "nools-ts",
"version": "2.3.8",
"description": "nools in TypeScript.",
"main": "nools.min.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn build-nools && yarn build-parser",
"build-nools": "cd ./packages/nools && yarn build",
"build-parser": "cd ./packages/parser && yarn build",
"lint-fix": "eslint */**/src/**/*.{js,ts,tsx} --quiet --fix",
"lint": "eslint */**/src/**/*.{js,ts,tsx}",
"architecture": "madge ./packages/nools/lib -i ./architecture/deps.png",
"show-circular-deps": "madge ./packages/nools/lib -c"
},
"keywords": [
"nools"
],
"author": "taoqf <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.11.1",
"@babel/plugin-transform-runtime": "7.11.0",
"@babel/preset-env": "7.11.0",
"babel-loader": "8.1.0",
"browserify": "16.5.2",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-rename": "2.0.0",
"gulp-shell": "0.8.0",
"gulp-uglyfly": "1.4.2",
"istanbul": "0.4.5",
"@types/jest": "26.0.5",
"jest": "26.1.0",
"ts-jest": "26.1.3",
"rimraf": "3.0.2",
"ts-loader": "8.0.2",
"typescript": "3.9.7",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"eslint": "7.7.0",
"prettier": "2.0.5",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"@typescript-eslint/parser": "3.9.0",
"@typescript-eslint/eslint-plugin": "3.9.0",
"eslint-plugin-import": "2.22.0"
},
"dependencies": {
"@types/node": "14.0.27",
"lodash-ts": "1.2.7",
"should": "13.2.3"
}
}