-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 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
{
"name": "@creately/sakota",
"version": "2.4.7",
"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.3.9",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.set": "^4.3.6",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.3.0",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "^2.0.1",
"karma-webpack": "^3.0.5",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3333",
"webpack": "^4.29.6"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"lodash.set": "^4.3.2"
}
}