forked from NativeScript/NativeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.64 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
{
"name": "NativeScript",
"description": "Telerik NativeScript Core Modules",
"homepage": "https://www.nativescript.org",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/NativeScript"
},
"license": "Apache-2.0",
"devDependencies": {
"@microsoft/api-extractor": "7.6.1",
"@nativescript/tslint-rules": "0.0.5",
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"@types/node": "~10.12.18",
"chai": "^4.1.2",
"css": "^2.2.1",
"css-tree": "^1.0.0-alpha24",
"gonzales": "^1.0.7",
"madge": "^2.2.0",
"markdown-snippet-injector": "0.2.2",
"mocha": "^3.5.0",
"mocha-typescript": "^1.1.9",
"module-alias": "^2.0.1",
"nativescript-typedoc-theme": "git://github.com/NativeScript/nativescript-typedoc-theme.git#master",
"ncp": "^2.0.0",
"parse-css": "git+https://github.com/tabatkins/parse-css.git",
"parserlib": "^1.1.1",
"readdirp": "3.1.3",
"reduce-css-calc": "^2.1.6",
"rimraf": "^2.5.0",
"shady-css-parser": "^0.1.0",
"source-map-support": "^0.4.17",
"ts-node": "^8.3.0",
"tslib": "1.10.0",
"tslint": "^5.4.3",
"typedoc": "^0.13.0",
"typedoc-plugin-external-module-name": "git://github.com/PanayotCankov/typedoc-plugin-external-module-name.git#with-js",
"typescript": "^3.1.6"
},
"scripts": {
"setup": "npm run build-core && npm run build-compat && npm run setup-link",
"setup-link": "(cd nativescript-core && npm link) && (cd dist/tns-core-modules && npm uninstall @nativescript/core -S)",
"setup-widgets": "(cd tns-core-modules-widgets && sh build.sh) && npm run dev-link-tns-core-modules-widgets",
"tsc-core-watch": "tsc -p nativescript-core/tsconfig.json -w",
"tslint": "tslint --project tsconfig.tslint.json --config build/tslint.json",
"unit-test": "tsc -p unit-tests/tsconfig.json && mocha --opts unit-tests/mocha.opts",
"unit-test-watch": "mocha-typescript-watch -p unit-tests/tsconfig.json --opts unit-tests/mocha.opts",
"dev-link-tns-core-modules-widgets": "(cd tns-core-modules-widgets/dist/package && npm link) && (cd nativescript-core && npm i ../tns-core-modules-widgets/dist/package --save)",
"api-extractor": "api-extractor run --local --verbose && (cd nativescript-core && cat nativescript-core.header nativescript-core.d.ts > tmp_file && mv tmp_file nativescript-core.d.ts)",
"api-extractor-ci": "api-extractor run --verbose",
"typedoc": "npm run api-extractor && typedoc --tsconfig tsconfig.typedoc.json",
"typedoc-dev": "npm run typedoc && cd bin/dist/apiref && npx http-server",
"build-core": "sh ./build/build-core.sh",
"build-compat": "sh ./build/build-compat.sh"
}
}