UNPKG

2.4 kBJSONView Raw
1{
2 "name": "@nailsframework/nails",
3 "version": "1.1.165",
4 "description": "The Typescript Library",
5 "main": "lib/nails.js",
6 "types": "lib/nails.d.ts",
7 "files": [
8 "lib/*"
9 ],
10 "nyc": {
11 "extension": [
12 ".ts",
13 ".tsx"
14 ]
15 },
16 "scripts": {
17 "type-check": "tsc --noEmit",
18 "type-check:watch": "npm run type-check -- --watch",
19 "build": "npm run build:types && npm run build:js",
20 "build:types": "tsc --emitDeclarationOnly",
21 "build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
22 "tsc": "tsc",
23 "test": "jest --config jestconfig.json",
24 "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
25 "lint": "tslint -p tsconfig.json --fix",
26 "prepare": "npm run build",
27 "prepublishOnly": "npm test && npm run lint",
28 "preversion": "npm run lint",
29 "version": "npm run format && git add -A src",
30 "postversion": "git push && git push --tags"
31 },
32 "repository": {
33 "type": "git",
34 "url": "git+https://github.com/nailsframework/nails.git"
35 },
36 "keywords": [
37 "Nails",
38 "Framework",
39 "nailsframework",
40 "nails",
41 "nailsjs",
42 "nailsts",
43 "frontend",
44 "javascript",
45 "typescript",
46 "library",
47 "framework"
48 ],
49 "author": "Dominic Järmann",
50 "license": "ISC",
51 "bugs": {
52 "url": "https://github.com/nailsframework/nails/issues"
53 },
54 "homepage": "https://github.com/nailsframework/nails#readme",
55 "devDependencies": {
56 "@babel/cli": "^7.7.0",
57 "@babel/core": "^7.7.2",
58 "@babel/plugin-proposal-class-properties": "^7.7.0",
59 "@babel/plugin-proposal-numeric-separator": "^7.2.0",
60 "@babel/plugin-proposal-object-rest-spread": "^7.6.2",
61 "@babel/plugin-transform-runtime": "^7.6.2",
62 "@babel/polyfill": "^7.0.0",
63 "@babel/preset-env": "^7.7.1",
64 "@babel/preset-es2015": "^7.0.0-beta.53",
65 "@babel/preset-stage-0": "^7.0.0",
66 "@babel/preset-typescript": "^7.7.2",
67 "@types/jest": "^24.0.22",
68 "babel-loader": "^8.0.6",
69 "babel-plugin-transform-class-properties": "^6.24.1",
70 "codecov": "^3.6.1",
71 "jest": "^24.9.0",
72 "prettier": "^1.19.1",
73 "ts-jest": "^24.1.0",
74 "tslint": "^5.20.1",
75 "tslint-config-prettier": "^1.18.0",
76 "typescript": "^3.7.2",
77 "webpack": "^4.41.2"
78 },
79 "dependencies": {
80 "@babel/runtime": "^7.7.2",
81 "nyc": "^14.1.1",
82 "ts-polyfill": "^3.5.3"
83 }
84}