-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.11 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
{
"name": "simplr-loaders",
"version": "2.1.2",
"description": "React CSS loaders with no prerequisites for required styles loading.",
"main": "dist/simplr-loaders.js",
"types": "@types/simplr-loaders.d.ts",
"author": "SimplrJS <[email protected]> (https://github.com/SimplrJS)",
"contributors": [
"Deividas Bakanas <[email protected]> (https://github.com/DeividasBakanas)",
"Giedrius Grabauskas <[email protected]> (https://github.com/GiedriusGrabauskas)",
"Dovydas Navickas <[email protected]> (https://github.com/DovydasNavickas)"
],
"license": "MIT",
"scripts": {
"test": "tsc -p . --noEmit && npm run tslint",
"build": "npm run clean && npm run build-scss && npm run css-to-ts && npm run build-ts",
"watch": "tsc -w & npm run css-to-ts -- -w & npm run builc-scss -- -w",
"clean": "rimraf @types & rimraf dist",
"css-to-ts": "css-to-ts --rootDir \"./dist\" --outDir \"./src\" --suffix style --header \"tslint:disable-next-line:max-line-length\" --exclude **/node_modules/** example/**",
"build-scss": "node-sass --output-style compressed ./src -o ./dist",
"build-ts": "tsc -p .",
"tslint": "tslint --project \"./tsconfig.json\" -c \"./tslint.json\"",
"uglifyjs": "glob-uglifyjs",
"release": "npm run build && npm run tslint && npm run uglifyjs",
"prepublishOnly": "npm run release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimplrJS/simplr-loaders.git"
},
"keywords": [
"simplr",
"loaders",
"react",
"QuatroCode",
"QuatroDev"
],
"files": [
"@types",
"dist",
"*.md",
"LICENSE"
],
"bugs": {
"url": "https://github.com/SimplrJS/simplr-loaders/issues"
},
"homepage": "https://github.com/SimplrJS/simplr-loaders",
"devDependencies": {
"css-to-ts": "^1.0.1",
"glob-uglifyjs": "^2.0.0",
"node-sass": "^4.6.0",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"dependencies": {
"@types/react": "^16.0.21",
"@types/react-dom": "^16.0.2"
}
}