-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 2.14 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
{
"name": "un-flatten-tree",
"version": "2.0.12",
"description": "Functions for converting trees to lists and vice versa.",
"main": "dist/un-flatten-tree.js",
"module": "dist/un-flatten-tree.es.js",
"types": "dist/un-flatten-tree.d.ts",
"scripts": {
"preversion": "npm run reinstall && npm run build && npm run lint && npm test && npm run break-cache-commit",
"postversion": "git add -A . && git push && git push --tags",
"build": "npm run build:es2015 && npm run build:umd",
"build:es2015": "tsc -p . -m es2015 -t es2015 && mv ./dist/un-flatten-tree.js ./dist/un-flatten-tree.es.js",
"build:umd": "tsc",
"reinstall": "npm run clean && rm -rf node_modules && npm i",
"clean": "rm -rf dist build coverage",
"test": "npm run test:node",
"test:node": "tsc -p tests && intern-client config=build/tests/intern",
"test:browser": "tsc -p tests && intern-runner config=build/tests/intern-browser",
"test:appium": "tsc -p tests && intern-runner config=build/tests/intern-appium",
"lint": "tslint un-flatten-tree.ts tests/**/*.ts",
"coverage": "remap-istanbul -i coverage/coverage-final.json --type text-lcov | coveralls",
"break-cache": "break-cache -i README.md -m \"\\.svg\" -o README.md",
"break-cache-commit": "npm run break-cache && git commit -am \"[skip ci] readme cache break\""
},
"files": [
"dist/",
"tests/",
"un-flatten-tree.ts",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iyegoroff/un-flatten-tree.git"
},
"keywords": [
"tree",
"flatten",
"unflatten"
],
"author": "iyegoroff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iyegoroff/un-flatten-tree/issues"
},
"homepage": "https://github.com/iyegoroff/un-flatten-tree#readme",
"devDependencies": {
"@types/lodash": "^4.14.68",
"break-cache": "^1.0.3",
"coveralls": "^2.13.1",
"intern": "^3.4.5",
"lodash-amd": "^4.17.4",
"remap-istanbul": "^0.9.5",
"tslint": "^5.5.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.4.1",
"vrsource-tslint-rules": "^5.1.0"
},
"dependencies": {}
}