-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
60
61
62
63
64
65
66
67
{
"name": "sprintfit",
"description": "Small sprintf and vsprintf format specifier focused on strings.",
"repository": "joseluisq/sprintfit",
"version": "1.0.1",
"license": "MIT",
"author": {
"name": "José Luis Quintana",
"url": "http://git.io/joseluisq"
},
"main": "index.js",
"typings": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"/*.min.js",
"README.md",
"LICENSE.md"
],
"keywords": [
"sprintf",
"vsprintf",
"string",
"formatter",
"utilities"
],
"devDependencies": {
"@types/benchmark": "1.0.31",
"@types/jasmine": "2.8.16",
"@types/node": "10.14.6",
"@types/sprintf-js": "1.1.2",
"benchmark": "2.1.4",
"jasmine": "3.1.0",
"jasmine-core": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.1.0",
"karma-benchmark-reporter": "0.1.1",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "3.0.13",
"printj": "1.2.1",
"rollup": "0.68.2",
"rollup-plugin-terser": "1.0.1",
"rollup-plugin-typescript2": "0.21.0",
"sprintf-js": "1.1.2",
"terser": "3.17.0",
"ts-node": "7.0.1",
"tslint": "5.16.0",
"tslint-config-standard-plus": "^2.3.0",
"typescript": "3.4.5"
},
"scripts": {
"version": "npm run build",
"build": "npm run test && npm run clean && npm run compile",
"compile": "npm run compile:browser && npm run compile:cjs",
"compile:cjs": "tsc --module commonjs --target es5",
"compile:browser": "rollup -c",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"test": "npm run lint && karma start --single-run --reporters spec",
"test:watch": "env NODE_ENV=debug karma start",
"benchmark": "env NODE_ENV=development node benchmark.js",
"lint": "tslint --format stylish --project tsconfig.json"
}
}