-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.78 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.78 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "sikky",
"version": "0.10.0",
"description": "TypeScript 2.0 Pre boilerplate for node and the browser. Tests in Mocha & Chai. TSLint for better code quality",
"main": "dist/sikky.es5.js",
"jsnext:main": "dist/sikky.js",
"author": "KFlash",
"homepage": "https://github.com/kflash/sikky",
"license": "MIT",
"engines": {
"node": ">= 5.4.1 < 6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kflash/sikky.git"
},
"bugs": {
"url": "https://github.com/kflash/sikky/issues"
},
"keywords": [
"es6",
"es2015",
"jsx",
"tsx",
"vscode",
"node",
"nodejs",
"ts-node",
"tslint",
"jsnext",
"ecmascript",
"TypeScript",
"microsoft",
"tslint",
"universal",
"rollup",
"tslint",
"mocha",
"chai",
"boilerplate"
],
"files": [
"src",
"dist"
],
"scripts": {
"build": "npm run lint:src && npm run build:dev && npm run build:prod",
"build:dev": "cross-env NODE_ENV=development rollup -c ./config/rollup.config.js",
"build:prod": "cross-env NODE_ENV=production rollup -c ./config/rollup.config.js",
"build:watch": "tsc src/sikky.ts --outDir dist -t es5 --m es6 --declaration --skipLibCheck --watch",
"build:vcode": "tsc src/sikky.ts --outDir dist -t es5 --m umd --declaration --skipLibCheck --sourceMap",
"clean": "rimraf coverage dist build",
"clean:build": "rimraf build",
"clean:dist": "rimraf dist",
"debug": "cross-env NODE_ENV=debug npm-run-all clean:build build:vcode",
"dependencies:check": "ncu",
"dependencies:upgrade": "ncu -u",
"prebuild": "tsc src/sikky.ts --outDir dist -t es5 --m es6 --declaration --skipLibCheck",
"postpublish": "git push origin master --follow-tags",
"test": "npm run test:browser && npm run test:node",
"test:browser": "cross-env NODE_ENV=test karma start ./config/karma.config.js --no-auto-watch --single-run",
"test:node": "cross-env NODE_ENV=test npm run lint:tests && mocha --recursive test/node-tests/**/*.ts --require ts-node/register -R spec --bail",
"tdd:browser": "cross-env NODE_ENV=test karma start ./config/karma.config.js --auto-watch",
"tdd:node": "cross-env NODE_ENV=test mocha test/node-tests/**/*.ts --require ts-node/register -w --watch-extensions ts",
"lint:src": "tslint src/**/*.tsx src/**/*.ts --ignore-path .gitignore",
"lint:tests": "tslint test/**/*.tsx test/**/*.ts --ignore-path .gitignore"
},
"devDependencies": {
"@types/chai": "^3.4.22-alpha",
"@types/mocha": "^2.2.21-alpha",
"@types/sinon": "^1.16.20-alpha",
"@types/sinon-chai": "^2.7.20-alpha",
"chai": "^3.5.0",
"cross-env": "^1.0.8",
"coveralls": "^2.11.9",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-sinon-chai": "^1.2.0",
"karma-coveralls": "^1.1.2",
"karma-coverage": "^1.0.0",
"karma-chrome-launcher": "^1.0.1",
"karma-rollup-preprocessor": "^2.0.2",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"lolex": "^1.5.0",
"mocha": "^2.5.3",
"npm-run-all": "^2.1.2",
"npm-check-updates": "^2.6.7",
"rollup": "^0.31.2",
"rollup-plugin-buble": "^0.11.0",
"rollup-plugin-commonjs": "^3.0.0",
"rollup-plugin-multi-entry": "^1.4.0",
"rollup-plugin-istanbul": "^1.0.0",
"rollup-plugin-strip": "^1.0.3",
"rollup-plugin-node-resolve": "^1.7.0",
"rollup-plugin-replace": "^1.1.0",
"rollup-plugin-typescript": "^0.7.5",
"rollup-plugin-uglify": "^1.0.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"rimraf": "^2.5.2",
"ts-node": "^0.9.1",
"tslint": "^3.11.0",
"typescript": "next"
},
"dependencies": {},
"npmName": "sikky",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}