-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "xyz-icon-set",
"version": "0.49.0",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:source && node ./dist/build.js && npm run build:output",
"build:output": "tsc dist/index.ts -d --skipLibCheck --outDir dist/",
"build:source": "tsc src/build.ts -d --skipLibCheck --outDir dist/ && npm run build:utils",
"build:utils": "tsc src/utils/Icon.ts -d --skipLibCheck --outDir dist/utils/",
"lint": "eslint src tests",
"lint:fix": "npm run lint -- --fix",
"test": "mocha -r ts-node/register src/**/__test__/**/*.ts",
"test:dev": "npm run test -- --watch",
"prepare": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartaxyz/xyz-icon-set.git"
},
"keywords": [
"xyz",
"icon",
"set",
"icons"
],
"author": "Ondřej Bárta (https://ondrejbarta.xyz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartaxyz/xyz-icon-set/issues"
},
"homepage": "https://github.com/bartaxyz/xyz-icon-set",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.32",
"@babel/core": "^7.0.0-beta.32",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.32",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"@babel/preset-typescript": "^7.0.0-beta.32",
"@types/chai": "^4.1.4",
"@types/jasmine": "^2.8.8",
"@types/jsdom": "^11.0.4",
"@types/node": "^10.5.8",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"handlebars": "^4.5.3",
"jasmine": "^3.2.0",
"jsdom": "^11.10.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^3.7.2"
}
}