-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.18 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.18 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
{
"name": "@creately/sakota",
"version": "2.4.9",
"description": "Proxies js objects and records all changes made on an object without modifying the object.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "prettier --print-width 120 --single-quote --trailing-comma es5 --write \"src/**/*.ts\"",
"test": "karma start karma.conf.js --single-run",
"test:watch": "karma start karma.conf.js",
"prepublish": "npm run lint && npm run build"
},
"author": "Muhammed Thanish <mnmtanish@gmail.com> (http://thanish.me/)",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^5.1.7",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.set": "^4.3.9",
"@types/webpack-env": "^1.18.8",
"jasmine-core": "^5.6.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-webpack": "^5.0.1",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.2",
"typescript": "^5.8.2",
"webpack": "^5.98.0"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
}
}