-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "typescript-fsa",
"version": "3.0.0",
"description": "Type-safe action creator utilities",
"keywords": [
"redux",
"flux",
"typescript",
"action",
"action creator"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib",
"src"
],
"repository": "aikoven/typescript-fsa",
"scripts": {
"clean": "rimraf lib dist",
"lint": "tslint -c tslint.json src/index.ts tests/index.ts",
"test": "ts-node -P tsconfig.tests.json node_modules/.bin/tape tests/*.ts",
"build:commonjs": "tsc",
"build:umd": "NODE_ENV=development rollup -c -o dist/typescript-fsa.js",
"build:umd:min": "NODE_ENV=production rollup -c -o dist/typescript-fsa.min.js",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"author": "Daniel Lytkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@alexlur/rollup-plugin-typescript": "^1.0.4",
"@types/tape": "^4.2.28",
"rimraf": "^2.5.4",
"rollup": "^0.46.0",
"rollup-plugin-execute": "^1.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"tape": "^4.6.2",
"ts-node": "^8.4.0",
"tslint": "^5.0.0",
"typescript": "^3.6.2",
"typings-tester": "^0.3.0"
},
"greenkeeper": {
"ignore": [
"rollup",
"rollup-plugin-execute",
"rollup-plugin-replace",
"rollup-plugin-uglify"
]
}
}