-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.85 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
{
"name": "refine-deep",
"version": "3.0.0",
"description": "Recursively remove falsey values from JS objects.",
"author": {
"name": "Ian K Smith",
"email": "hello@iks.codes"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"dev": "npm-run-all -s clean:dist -p compile_watch:*",
"build": "npm-run-all -s clean:dist -p compile:*",
"compile:cjs": "microbundle build src/index.cjs.ts --format cjs --external none",
"compile:umd": "microbundle build src/index.umd.ts --format umd --name refineDeep --external none",
"compile_watch:cjs": "microbundle watch src/index.cjs.ts --format cjs --external none",
"compile_watch:umd": "microbundle watch src/index.umd.ts --format umd --name refineDeep --external none",
"clean": "npm-run-all -s clean:*",
"clean:dist": "rimraf dist",
"clean:test-dist": "rimraf test/dist",
"clean:cache": "rimraf .rts2_cache_*",
"test-watch": "npm-run-all -s test:compile -p test-watch:*",
"test-watch:compile": "tsc -w -p ./test",
"test-watch:run": "chokidar \"./test/dist/**/*.spec.js\" -c \"npm run test:run\" --initial \"npm run test:run\"",
"test": "npm-run-all -s clean:test-dist test:*",
"test:compile": "tsc -p ./test",
"test:run": "alsatian ./test/dist/**/*.spec.js",
"lint": "tslint --project ./tsconfig.json",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"git add"
]
},
"devDependencies": {
"@ikscodes/tslint-config": "^5.3.1",
"@types/node": "^9.4.6",
"alsatian": "^2.4.0",
"husky": "^0.14.3",
"lint-staged": "~7.3.0",
"microbundle": "^0.9.0",
"npm-run-all": "~4.1.2",
"prettier": "^1.15.3",
"rimraf": "^2.6.2",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}