-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
88 lines (88 loc) · 3.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"version": "0.3.17",
"description": "A small & lightweight dependency injection container for use in multiple contexts like Angular, React & node.",
"name": "@morgan-stanley/needle",
"license": "Apache-2.0",
"author": "Morgan Stanley",
"main": "./dist/main/index.js",
"types": "./dist/main/index.d.ts",
"keywords": [
"injection",
"dependency injection",
"IOC",
"testability",
"container",
"universal",
"isomorphic",
"morgan stanley"
],
"scripts": {
"clean": "rimraf dist reports ../build ../install ../packages docs",
"build": "tsc -p main/tsconfig.json",
"postbuild": "npm run copy",
"copy": "copyfiles main/**/*.html main/**/*.css main/**/*.jpg dist",
"prebuild-release": "npm run clean && npm run verify-release",
"verify-release": "concurrently --kill-others-on-fail npm:lint npm:test npm:build",
"build-release": "typedoc main/index.ts",
"watch-build": "tsc --watch",
"test": "karma start --singleRun --browsers ChromeHeadlessNoSandbox",
"lint": "eslint . --ext .ts,.js",
"watch-test": "karma start --no-coverage",
"watch-test-coverage": "karma start",
"prepublishOnly": "npm run build-release",
"lint:fix": "eslint . --ext .ts,.js --fix"
},
"dependencies": {
"uuid": "^8.3.0"
},
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@types/jasmine": "^3.3.13",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"ajv": "^6.10.2",
"chromedriver": "^119.0.1",
"circular-dependency-plugin": "^5.2.0",
"concurrently": "^9.1.0",
"copyfiles": "^1.2.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"jasmine": "^3.3.0",
"jasmine-core": "^5.4.0",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-junit-reporter": "^2.0.1",
"karma-webpack": "^5.0.0",
"prettier": "^1.19.1",
"puppeteer": "^23.9.0",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"source-map": "0.5.7",
"ts-loader": "^9.2.7",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typedoc": "^0.22.12",
"typescript": "~4.3",
"webpack": "^5.69.1"
},
"peerDependencies": {
"typescript": ">=3.4",
"reflect-metadata": "^0.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/MorganStanley/needle.git"
},
"publishConfig": {
"access": "public"
}
}