forked from creately/sakota
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.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
{
"name": "@thani-sh/sakota",
"version": "1.0.0",
"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 <[email protected]> (http://thanish.me/)",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^3.10.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.10.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-webpack": "^5.0.0",
"prettier": "^2.4.1",
"puppeteer": "^10.4.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.58.2"
}
}